Zaktualizowano zależności Nix flake i konfigurację systemu

- Zaktualizowano `flake.lock` do nowszych wersji `home-manager`, `nixpkgs` i `stylix`
- Dodano `galculator` i `lutris` do listy pakietów w `config.nix`
- Przywrócono polecenie aktualizacji `auto-cpufreq` w `home.nix`
- Dodano alias `mkgidf` do generowania pliku `git diff`
- Poprawiono wielkość liter w aliasie `kys` do zamykania systemu
This commit is contained in:
installer
2025-02-02 23:38:21 +01:00
parent 7d1e6e5272
commit 8dc64c58ee
3 changed files with 14 additions and 12 deletions

18
flake.lock generated
View File

@@ -228,11 +228,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1737968762, "lastModified": 1738448366,
"narHash": "sha256-xiPARGKwocaMtv+U/rgi+h2g56CZZEmrcl7ldRaslq8=", "narHash": "sha256-4ATtQqBlgsGqkHTemta0ydY6f7JBRXz4Hf574NHQpkg=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "e1ae908bcc30af792b0bb0a52e53b03d2577255e", "rev": "18fa9f323d8adbb0b7b8b98a8488db308210ed93",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -244,11 +244,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1737885589, "lastModified": 1738410390,
"narHash": "sha256-Zf0hSrtzaM1DEz8//+Xs51k/wdSajticVrATqDrfQjg=", "narHash": "sha256-xvTo0Aw0+veek7hvEVLzErmJyQkEcRk6PSR4zsRQFEc=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "852ff1d9e153d8875a83602e03fdef8a63f0ecf8", "rev": "3a228057f5b619feb3186e986dbe76278d707b6e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -290,11 +290,11 @@
"tinted-zed": "tinted-zed" "tinted-zed": "tinted-zed"
}, },
"locked": { "locked": {
"lastModified": 1738025638, "lastModified": 1738278499,
"narHash": "sha256-nU3JpvIeEmcDHzQK4OTD1KXSoL/GOff6j9kuSO4X8eM=", "narHash": "sha256-q1SUyXSQ9znHTME53/vPLe+Ga3V1wW3X3gWfa8JsBUM=",
"owner": "danth", "owner": "danth",
"repo": "stylix", "repo": "stylix",
"rev": "55418e8fc8d4696af619176a22cefcfac56ad2ef", "rev": "b00c9f46ae6c27074d24d2db390f0ac5ebcc329f",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -335,6 +335,7 @@ in {
sl sl
nodejs nodejs
kdePackages.kdenlive kdePackages.kdenlive
galculator
obs-studio obs-studio
thefuck thefuck
cifs-utils cifs-utils
@@ -351,8 +352,7 @@ in {
wineWowPackages.waylandFull # wine64 wineWowPackages.waylandFull # wine64
lazydocker lazydocker
lazygit lazygit
# vscode-extensions.continue.continue lutris
# auto-cpufreq
]; ];
fonts = { fonts = {

View File

@@ -193,6 +193,7 @@ in {
os-up-np = "sudo nix flake update --update-input nixpkgs"; os-up-np = "sudo nix flake update --update-input nixpkgs";
os-up-hm = "sudo nix flake update --update-input home-manager"; os-up-hm = "sudo nix flake update --update-input home-manager";
os-up-sx = "sudo nix flake update --update-input stylix"; os-up-sx = "sudo nix flake update --update-input stylix";
os-up-af = "sudo nix flake update --update-input auto-cpufreq";
fr = "nh os switch --hostname ${host} /home/${username}/zaneyos"; fr = "nh os switch --hostname ${host} /home/${username}/zaneyos";
fu = "nh os switch --hostname ${host} --update /home/${username}/zaneyos"; fu = "nh os switch --hostname ${host} --update /home/${username}/zaneyos";
zu = "sh <(curl -L https://gitlab.com/Zaney/zaneyos/-/raw/main/install-zaneyos.sh)"; zu = "sh <(curl -L https://gitlab.com/Zaney/zaneyos/-/raw/main/install-zaneyos.sh)";
@@ -208,8 +209,9 @@ in {
fc = "fortune | cowsay"; fc = "fortune | cowsay";
terminal = "cat /home/garand_plg/Documents/terminal.txt"; terminal = "cat /home/garand_plg/Documents/terminal.txt";
e-terminal = "nano /home/garand_plg/Documents/terminal.txt"; e-terminal = "nano /home/garand_plg/Documents/terminal.txt";
mkgidf = "git diff > git-diff.txt";
".." = "cd .."; ".." = "cd ..";
KYS = "shutdown now"; kys = "shutdown now";
}; };
}; };
home-manager.enable = true; home-manager.enable = true;