some pitchy patches
This commit is contained in:
parent
e7632cb5d3
commit
4da72e5043
8 changed files with 51 additions and 19 deletions
18
flake.lock
generated
18
flake.lock
generated
|
|
@ -243,11 +243,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1769690747,
|
||||
"narHash": "sha256-sCAAgFSXkINqciVgIfsvfhmiwc/HuUNrYYtyLXiHscA=",
|
||||
"lastModified": 1769786987,
|
||||
"narHash": "sha256-WcMrlCfVBGPHMMDF67OtcVmHp4N8SksnDmKnwK1RcZA=",
|
||||
"owner": "nix-community",
|
||||
"repo": "NUR",
|
||||
"rev": "6534d0bdf753e2e722e9a428fdf379cc2c49f9bb",
|
||||
"rev": "7db9a3c41c7ef7e7aee223d4ee84166e987fcce6",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
@ -264,11 +264,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1769690747,
|
||||
"narHash": "sha256-sCAAgFSXkINqciVgIfsvfhmiwc/HuUNrYYtyLXiHscA=",
|
||||
"lastModified": 1769786987,
|
||||
"narHash": "sha256-WcMrlCfVBGPHMMDF67OtcVmHp4N8SksnDmKnwK1RcZA=",
|
||||
"owner": "nix-community",
|
||||
"repo": "NUR",
|
||||
"rev": "6534d0bdf753e2e722e9a428fdf379cc2c49f9bb",
|
||||
"rev": "7db9a3c41c7ef7e7aee223d4ee84166e987fcce6",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
@ -333,11 +333,11 @@
|
|||
"tinted-zed": "tinted-zed"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1769610400,
|
||||
"narHash": "sha256-R9LkpKVxLMr/KV9+N+uP4Jve+LdFsUXMPSS0zlgnWlg=",
|
||||
"lastModified": 1769782950,
|
||||
"narHash": "sha256-bMJPPDyG/BV7Qx0r5JuO9oQG/o/VlnEOFnC8zKhJsBQ=",
|
||||
"owner": "danth",
|
||||
"repo": "stylix",
|
||||
"rev": "477c504322c7df6388d556aac82965ed49072190",
|
||||
"rev": "aad90ca763be126c0ed67c29826bbb9b5ca665d8",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
|||
12
flake.nix
12
flake.nix
|
|
@ -73,6 +73,9 @@
|
|||
./home/alisceon/workstation.nix
|
||||
./home/wm/sway.nix
|
||||
];
|
||||
home-manager.users.root.imports = [
|
||||
./home/root/base.nix
|
||||
];
|
||||
}) # end home-manager
|
||||
]; # end modules
|
||||
}; # end electra
|
||||
|
|
@ -92,6 +95,9 @@
|
|||
./home/alisceon/workstation.nix
|
||||
./home/wm/sway.nix
|
||||
];
|
||||
home-manager.users.root.imports = [
|
||||
./home/root/base.nix
|
||||
];
|
||||
}) # end home-manager
|
||||
]; # end modules
|
||||
}; # end tower
|
||||
|
|
@ -108,6 +114,9 @@
|
|||
./home/alisceon/base.nix
|
||||
./home/alisceon/server.nix
|
||||
];
|
||||
home-manager.users.root.imports = [
|
||||
./home/root/base.nix
|
||||
];
|
||||
}) # end home-manager
|
||||
]; # end modules
|
||||
}; # end tesla-nixos
|
||||
|
|
@ -124,6 +133,9 @@
|
|||
./home/alisceon/base.nix
|
||||
./home/alisceon/server.nix
|
||||
];
|
||||
home-manager.users.root.imports = [
|
||||
./home/root/base.nix
|
||||
];
|
||||
}) # end home-manager
|
||||
]; # end modules
|
||||
}; # end tesla-nixos
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@
|
|||
home.homeDirectory = "/home/alisceon";
|
||||
home.stateVersion = "24.05";
|
||||
manual.manpages.enable = true;
|
||||
stylix.enableReleaseChecks = false;
|
||||
programs = {
|
||||
fish = {
|
||||
enable = false;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,4 @@
|
|||
{ pkgs, config, hostName, lib, ... }: {
|
||||
|
||||
stylix.enableReleaseChecks = false;
|
||||
|
||||
programs = {
|
||||
vscode = {
|
||||
enable = true;
|
||||
|
|
|
|||
13
home/root/base.nix
Normal file
13
home/root/base.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, config, hostName, lib, ... }:
|
||||
{
|
||||
stylix.enableReleaseChecks = false;
|
||||
home.username = "root";
|
||||
home.homeDirectory = "/root";
|
||||
home.stateVersion = "24.05";
|
||||
programs = {
|
||||
git = {
|
||||
enable = true;
|
||||
extraConfig.safe.directory = "/home/alisceon/.nixos_config";
|
||||
}; # end git
|
||||
}; # end programs
|
||||
} # end file
|
||||
|
|
@ -410,6 +410,7 @@
|
|||
"bluetooth" = {
|
||||
format-connected = "| ᛒ";
|
||||
format-disconnected = "| ᚧ";
|
||||
format-no-controllers = "";
|
||||
interval = 15;
|
||||
on-click = "${uwsm} ${term} -e bluetui";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -9,10 +9,10 @@
|
|||
system.autoUpgrade = {
|
||||
enable = true;
|
||||
persistent = true;
|
||||
flake = "/home/alisceon/.nixos_config#${config.networking.hostName}";
|
||||
flake = "/home/alisceon/.nixos_config";
|
||||
flags = [
|
||||
"--update-input"
|
||||
"nixpkgs"
|
||||
"--print-build-logs"
|
||||
"--no-write-lock-file"
|
||||
];
|
||||
dates = "daily";
|
||||
}; # end system.autoUpgrade
|
||||
|
|
|
|||
|
|
@ -4,16 +4,24 @@ dailies = [
|
|||
"https://www.geoguessr.com/",
|
||||
"https://timeguessr.com/",
|
||||
"https://languageguessr.io/daily",
|
||||
"https://flagle-game.com/daily",
|
||||
"https://www.flagle.io/",
|
||||
"https://flagsgame.net/",
|
||||
"https://flagpixel.com/",
|
||||
"https://flagle-game.com/daily",
|
||||
"https://flagdoku.com/",
|
||||
"https://travle.earth/",
|
||||
"https://geoworldle.com/flaggrid",
|
||||
"https://games.oec.world/en/tradle/",
|
||||
"https://oec.world/en/games/connectrade/",
|
||||
"https://geoconnections.net/",
|
||||
"https://travle.earth/",
|
||||
"https://worldle.teuteuf.fr/",
|
||||
"https://globle-game.com/game/",
|
||||
"https://countryle.com/",
|
||||
#"https://capitale.countryle.com/",
|
||||
"https://globle-game.com/game/",
|
||||
"https://daydle.com/",
|
||||
"https://histordle.com/yeardle/",
|
||||
#"https://daydle.com/",
|
||||
#"https://histordle.com/yeardle/",
|
||||
"https://histordle.com/popcultured/",
|
||||
"https://quizl.io/",
|
||||
"https://angle.wtf/",
|
||||
"https://playboardle.com/",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue