Compare commits
No commits in common. "4f427a1af02c161414aa76c856ccc4c854b0f31d" and "6ac6c162b1b6d62a5f2b960b7601006fa638671a" have entirely different histories.
4f427a1af0
...
6ac6c162b1
24
flake.lock
generated
24
flake.lock
generated
@ -75,11 +75,11 @@
|
|||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"dir": "pkgs/firefox-addons",
|
"dir": "pkgs/firefox-addons",
|
||||||
"lastModified": 1751256218,
|
"lastModified": 1751083400,
|
||||||
"narHash": "sha256-WC1YSV4lFT41AaEhpiQZRuofe+2WLI9PNuuqgdRmjVM=",
|
"narHash": "sha256-0hZWDzX7/C0NcsiOW+WBvdb+aGDnydw1xku3UUXzm/4=",
|
||||||
"owner": "rycee",
|
"owner": "rycee",
|
||||||
"repo": "nur-expressions",
|
"repo": "nur-expressions",
|
||||||
"rev": "fa40d85b15cbfb1a488ef9a119ff2d40a481c8da",
|
"rev": "e805fa9d7c2968712896f71684540dac21449744",
|
||||||
"type": "gitlab"
|
"type": "gitlab"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@ -265,11 +265,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1751239699,
|
"lastModified": 1750973805,
|
||||||
"narHash": "sha256-zA1uUdAq3c26fHm26xMWMuF5COhI18EzaH7az/P2OWM=",
|
"narHash": "sha256-BZXgag7I0rnL/HMHAsBz3tQrfKAibpY2vovexl2lS+Y=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "f6deff178cc4d6049d30785dbfc831e6c6e3a219",
|
"rev": "080e8b48b0318b38143d5865de9334f46d51fce3",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@ -434,11 +434,11 @@
|
|||||||
"systems": "systems_2"
|
"systems": "systems_2"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1751186226,
|
"lastModified": 1750842150,
|
||||||
"narHash": "sha256-Bt7jtmCW72JUPxOIrV73qBTAUOy4qvJXsls2ERDUcGo=",
|
"narHash": "sha256-slD1Nzr7SStRhQgC1WmrIsgrgwgRyag2MAxCSrjrxKg=",
|
||||||
"owner": "notashelf",
|
"owner": "notashelf",
|
||||||
"repo": "nvf",
|
"repo": "nvf",
|
||||||
"rev": "5bad5dd94ce5ea3b40b08d9e6802e69d02198d21",
|
"rev": "f9ee813a230e1c0ba0e1a13e1747fd1b996f08dc",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@ -481,11 +481,11 @@
|
|||||||
"tinted-zed": "tinted-zed"
|
"tinted-zed": "tinted-zed"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1751145558,
|
"lastModified": 1751105505,
|
||||||
"narHash": "sha256-OPlbpH64jzIspYqvJB96tnN9V9HBlAxROS5ijQwtN70=",
|
"narHash": "sha256-SfM48R06e9omzDRNoU7vTRghxLmQPZ+fxoBoOkszL0k=",
|
||||||
"owner": "danth",
|
"owner": "danth",
|
||||||
"repo": "stylix",
|
"repo": "stylix",
|
||||||
"rev": "3a09d3f5cb940fa4142a2f3415b508a8be92b721",
|
"rev": "713f8dae3127a0faeb1d343ed8da67677121ee29",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
@ -1,87 +0,0 @@
|
|||||||
{ config, pkgs, inputs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
imports =
|
|
||||||
[
|
|
||||||
../../modules/home-manager/webapps.nix
|
|
||||||
../../modules/home-manager/lf/lf.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
home.username = "smayzy";
|
|
||||||
home.homeDirectory = "/home/smayzy";
|
|
||||||
home.stateVersion = "25.05";
|
|
||||||
|
|
||||||
home.packages = [
|
|
||||||
];
|
|
||||||
|
|
||||||
home.file = {
|
|
||||||
".config/fastfetch" = {
|
|
||||||
source = builtins.toPath ../../dotfiles/fastfetch;
|
|
||||||
recursive = true;
|
|
||||||
force = true;
|
|
||||||
};
|
|
||||||
".config/kitty/kitty.conf" = {
|
|
||||||
source = builtins.toPath ../../dotfiles/kitty.conf;
|
|
||||||
force = true;
|
|
||||||
};
|
|
||||||
".config/mako/config" = {
|
|
||||||
source = builtins.toPath ../../dotfiles/mako/config;
|
|
||||||
force = true;
|
|
||||||
};
|
|
||||||
".config/wofi" = {
|
|
||||||
source = builtins.toPath ../../dotfiles/wofi;
|
|
||||||
recursive = true;
|
|
||||||
force = true;
|
|
||||||
};
|
|
||||||
"wallpaper" = {
|
|
||||||
source = builtins.toPath ../../wallpapers;
|
|
||||||
recursive = true;
|
|
||||||
force = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
home.sessionVariables = {
|
|
||||||
EDITOR = "vim";
|
|
||||||
GTK_THEME = "Adwaita:dark";
|
|
||||||
};
|
|
||||||
|
|
||||||
dconf.settings = {
|
|
||||||
"org/virt-manager/virt-manager/connections" = {
|
|
||||||
autoconnect = ["qemu:///system"];
|
|
||||||
uris = ["qemu:///system"];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.zsh = {
|
|
||||||
enable = true;
|
|
||||||
enableCompletion = true;
|
|
||||||
autosuggestion.enable = true;
|
|
||||||
syntaxHighlighting.enable = true;
|
|
||||||
history.size = 100000;
|
|
||||||
shellAliases = {
|
|
||||||
config = "cd ~/nix-config";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.git = {
|
|
||||||
enable = true;
|
|
||||||
userName = "smayzy";
|
|
||||||
userEmail = "smayzy@smayzy.ovh";
|
|
||||||
extraConfig = {
|
|
||||||
core.editor = "vim";
|
|
||||||
core.autocrlf = "input";
|
|
||||||
credential.helper = "store";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.firefox = {
|
|
||||||
enable = true;
|
|
||||||
policies = {
|
|
||||||
OverridePostfix = "no-gtk-theme";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
stylix.autoEnable = false;
|
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
|
||||||
}
|
|
||||||
@ -3,28 +3,99 @@
|
|||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
../common/home.nix
|
../../modules/home-manager/webapps.nix
|
||||||
|
../../modules/home-manager/lf/lf.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
home.username = "smayzy";
|
||||||
|
home.homeDirectory = "/home/smayzy";
|
||||||
|
home.stateVersion = "25.05";
|
||||||
|
|
||||||
home.packages = [
|
home.packages = [
|
||||||
];
|
];
|
||||||
|
|
||||||
home.file = {
|
home.file = {
|
||||||
".config/hypr" = {
|
".config/fastfetch" = {
|
||||||
|
source = builtins.toPath ../../dotfiles/fastfetch;
|
||||||
|
recursive = true;
|
||||||
|
force = true;
|
||||||
|
};
|
||||||
|
".config/kitty/kitty.conf" = {
|
||||||
|
source = builtins.toPath ../../dotfiles/kitty.conf;
|
||||||
|
force = true;
|
||||||
|
};
|
||||||
|
".config/hypr" = {
|
||||||
source = builtins.toPath ../../dotfiles/hypr-desk;
|
source = builtins.toPath ../../dotfiles/hypr-desk;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
".config/waybar" = {
|
".config/mako/config" = {
|
||||||
|
source = builtins.toPath ../../dotfiles/mako/config;
|
||||||
|
force = true;
|
||||||
|
};
|
||||||
|
".config/waybar" = {
|
||||||
source = builtins.toPath ../../dotfiles/waybar-desk;
|
source = builtins.toPath ../../dotfiles/waybar-desk;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
".config/wlogout" = {
|
".config/wofi" = {
|
||||||
|
source = builtins.toPath ../../dotfiles/wofi;
|
||||||
|
recursive = true;
|
||||||
|
force = true;
|
||||||
|
};
|
||||||
|
".config/wlogout" = {
|
||||||
source = builtins.toPath ../../dotfiles/wlogout-desk;
|
source = builtins.toPath ../../dotfiles/wlogout-desk;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
};
|
"wallpaper" = {
|
||||||
|
source = builtins.toPath ../../wallpapers;
|
||||||
|
recursive = true;
|
||||||
|
force = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
home.sessionVariables = {
|
||||||
|
EDITOR = "vim";
|
||||||
|
GTK_THEME = "Adwaita:dark";
|
||||||
|
};
|
||||||
|
|
||||||
|
dconf.settings = {
|
||||||
|
"org/virt-manager/virt-manager/connections" = {
|
||||||
|
autoconnect = ["qemu:///system"];
|
||||||
|
uris = ["qemu:///system"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.zsh = {
|
||||||
|
enable = true;
|
||||||
|
enableCompletion = true;
|
||||||
|
autosuggestion.enable = true;
|
||||||
|
syntaxHighlighting.enable = true;
|
||||||
|
history.size = 100000;
|
||||||
|
shellAliases = {
|
||||||
|
config = "cd ~/nix-config";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
userName = "smayzy";
|
||||||
|
userEmail = "smayzy@smayzy.ovh";
|
||||||
|
extraConfig = {
|
||||||
|
core.editor = "vim";
|
||||||
|
core.autocrlf = "input";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.firefox = {
|
||||||
|
enable = true;
|
||||||
|
policies = {
|
||||||
|
OverridePostfix = "no-gtk-theme";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
stylix.autoEnable = false;
|
||||||
|
|
||||||
|
programs.home-manager.enable = true;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,27 +3,99 @@
|
|||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
../common/home.nix
|
../../modules/home-manager/webapps.nix
|
||||||
|
../../modules/home-manager/lf/lf.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
home.username = "smayzy";
|
||||||
|
home.homeDirectory = "/home/smayzy";
|
||||||
|
home.stateVersion = "25.05";
|
||||||
|
|
||||||
home.packages = [
|
home.packages = [
|
||||||
];
|
];
|
||||||
|
|
||||||
home.file = {
|
home.file = {
|
||||||
|
".config/fastfetch" = {
|
||||||
|
source = builtins.toPath ../../dotfiles/fastfetch;
|
||||||
|
recursive = true;
|
||||||
|
force = true;
|
||||||
|
};
|
||||||
|
".config/kitty/kitty.conf" = {
|
||||||
|
source = builtins.toPath ../../dotfiles/kitty.conf;
|
||||||
|
force = true;
|
||||||
|
};
|
||||||
".config/hypr" = {
|
".config/hypr" = {
|
||||||
source = builtins.toPath ../../dotfiles/hypr-lap;
|
source = builtins.toPath ../../dotfiles/hypr-lap;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
|
".config/mako/config" = {
|
||||||
|
source = builtins.toPath ../../dotfiles/mako/config;
|
||||||
|
force = true;
|
||||||
|
};
|
||||||
".config/waybar" = {
|
".config/waybar" = {
|
||||||
source = builtins.toPath ../../dotfiles/waybar-lap;
|
source = builtins.toPath ../../dotfiles/waybar-lap;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
|
".config/wofi" = {
|
||||||
|
source = builtins.toPath ../../dotfiles/wofi;
|
||||||
|
recursive = true;
|
||||||
|
force = true;
|
||||||
|
};
|
||||||
".config/wlogout" = {
|
".config/wlogout" = {
|
||||||
source = builtins.toPath ../../dotfiles/wlogout-lap;
|
source = builtins.toPath ../../dotfiles/wlogout-lap;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
|
"wallpaper" = {
|
||||||
|
source = builtins.toPath ../../wallpapers;
|
||||||
|
recursive = true;
|
||||||
|
force = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home.sessionVariables = {
|
||||||
|
EDITOR = "vim";
|
||||||
|
GTK_THEME = "Adwaita:dark";
|
||||||
|
};
|
||||||
|
|
||||||
|
dconf.settings = {
|
||||||
|
"org/virt-manager/virt-manager/connections" = {
|
||||||
|
autoconnect = ["qemu:///system"];
|
||||||
|
uris = ["qemu:///system"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.zsh = {
|
||||||
|
enable = true;
|
||||||
|
enableCompletion = true;
|
||||||
|
autosuggestion.enable = true;
|
||||||
|
syntaxHighlighting.enable = true;
|
||||||
|
history.size = 100000;
|
||||||
|
shellAliases = {
|
||||||
|
config = "cd ~/nix-config";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
userName = "smayzy";
|
||||||
|
userEmail = "smayzy@smayzy.ovh";
|
||||||
|
extraConfig = {
|
||||||
|
core.editor = "vim";
|
||||||
|
core.autocrlf = "input";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.firefox = {
|
||||||
|
enable = true;
|
||||||
|
policies = {
|
||||||
|
OverridePostfix = "no-gtk-theme";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
stylix.autoEnable = false;
|
||||||
|
|
||||||
|
programs.home-manager.enable = true;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user