Compare commits

..

3 Commits

Author SHA1 Message Date
4f427a1af0 try saving git creds 2025-06-30 15:18:05 +02:00
40bfc9c7e7 try something might revert if goes wrong 2025-06-30 15:16:19 +02:00
bd3452af46 update 2025-06-30 15:07:21 +02:00
4 changed files with 105 additions and 161 deletions

24
flake.lock generated
View File

@ -75,11 +75,11 @@
}, },
"locked": { "locked": {
"dir": "pkgs/firefox-addons", "dir": "pkgs/firefox-addons",
"lastModified": 1751083400, "lastModified": 1751256218,
"narHash": "sha256-0hZWDzX7/C0NcsiOW+WBvdb+aGDnydw1xku3UUXzm/4=", "narHash": "sha256-WC1YSV4lFT41AaEhpiQZRuofe+2WLI9PNuuqgdRmjVM=",
"owner": "rycee", "owner": "rycee",
"repo": "nur-expressions", "repo": "nur-expressions",
"rev": "e805fa9d7c2968712896f71684540dac21449744", "rev": "fa40d85b15cbfb1a488ef9a119ff2d40a481c8da",
"type": "gitlab" "type": "gitlab"
}, },
"original": { "original": {
@ -265,11 +265,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1750973805, "lastModified": 1751239699,
"narHash": "sha256-BZXgag7I0rnL/HMHAsBz3tQrfKAibpY2vovexl2lS+Y=", "narHash": "sha256-zA1uUdAq3c26fHm26xMWMuF5COhI18EzaH7az/P2OWM=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "080e8b48b0318b38143d5865de9334f46d51fce3", "rev": "f6deff178cc4d6049d30785dbfc831e6c6e3a219",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -434,11 +434,11 @@
"systems": "systems_2" "systems": "systems_2"
}, },
"locked": { "locked": {
"lastModified": 1750842150, "lastModified": 1751186226,
"narHash": "sha256-slD1Nzr7SStRhQgC1WmrIsgrgwgRyag2MAxCSrjrxKg=", "narHash": "sha256-Bt7jtmCW72JUPxOIrV73qBTAUOy4qvJXsls2ERDUcGo=",
"owner": "notashelf", "owner": "notashelf",
"repo": "nvf", "repo": "nvf",
"rev": "f9ee813a230e1c0ba0e1a13e1747fd1b996f08dc", "rev": "5bad5dd94ce5ea3b40b08d9e6802e69d02198d21",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -481,11 +481,11 @@
"tinted-zed": "tinted-zed" "tinted-zed": "tinted-zed"
}, },
"locked": { "locked": {
"lastModified": 1751105505, "lastModified": 1751145558,
"narHash": "sha256-SfM48R06e9omzDRNoU7vTRghxLmQPZ+fxoBoOkszL0k=", "narHash": "sha256-OPlbpH64jzIspYqvJB96tnN9V9HBlAxROS5ijQwtN70=",
"owner": "danth", "owner": "danth",
"repo": "stylix", "repo": "stylix",
"rev": "713f8dae3127a0faeb1d343ed8da67677121ee29", "rev": "3a09d3f5cb940fa4142a2f3415b508a8be92b721",
"type": "github" "type": "github"
}, },
"original": { "original": {

87
hosts/common/home.nix Normal file
View File

@ -0,0 +1,87 @@
{ 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;
}

View File

@ -3,99 +3,28 @@
{ {
imports = imports =
[ [
../../modules/home-manager/webapps.nix ../common/home.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-desk; source = builtins.toPath ../../dotfiles/hypr-desk;
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-desk; source = builtins.toPath ../../dotfiles/waybar-desk;
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-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;
} }

View File

@ -3,99 +3,27 @@
{ {
imports = imports =
[ [
../../modules/home-manager/webapps.nix ../common/home.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;
} }