revert flake update, breaks on jacis device

This commit is contained in:
Jaci Anderson 2024-02-15 11:42:42 -07:00
parent 55618f4f1a
commit ba955e5fc1
5 changed files with 29 additions and 14 deletions

View File

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1706435589, "lastModified": 1705269478,
"narHash": "sha256-yhEYJxMv5BkfmUuNe4QELKo+V5eq1pwhtVs6kEziHfE=", "narHash": "sha256-j7Rp8Y3ckBHOlIzqe0g2+/BVce9SU/dVtn4Eb0rMuY4=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "4d54c29bce71f8c261513e0662cc573d30f3e33e", "rev": "846200eb574faa2af808ed02e653c2b8ed51fd71",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1706371002, "lastModified": 1705133751,
"narHash": "sha256-dwuorKimqSYgyu8Cw6ncKhyQjUDOyuXoxDTVmAXq88s=", "narHash": "sha256-rCIsyE80jgiOU78gCWN3A0wE0tR2GI5nH6MlS+HaaSQ=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c002c6aa977ad22c60398daaa9be52f2203d0006", "rev": "9b19f5e77dd906cb52dade0b7bd280339d2a1f3d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -38,11 +38,11 @@
}, },
"nixpkgs-stable": { "nixpkgs-stable": {
"locked": { "locked": {
"lastModified": 1706373441, "lastModified": 1705183652,
"narHash": "sha256-S1hbgNbVYhuY2L05OANWqmRzj4cElcbLuIkXTb69xkk=", "narHash": "sha256-rnfkyUH0x72oHfiSDhuCHDHg3gFgF+lF8zkkg5Zihsw=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "56911ef3403a9318b7621ce745f5452fb9ef6867", "rev": "428544ae95eec077c7f823b422afae5f174dee4b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -54,11 +54,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1706559951, "lastModified": 1705283909,
"narHash": "sha256-yfez9ZnYWsm3m3K8HvN3bGEdWe8aO0ni9r82bAq+q9k=", "narHash": "sha256-7F2KyTB4cApsHg7oltJ1r0QFWMjWTOaS9m2IbKFhj6Y=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "24478b9e556e4366ef0a2ff58590d8cf24c77267", "rev": "375b9a949232cd1e31bd89d197a5605a17d2aeb3",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -11,7 +11,7 @@ swww img ~/.config/labwc/backgrounds/cat1.jpg >/dev/null 2>&1 &
# output HDMI-A-1 position 1366,0 # output HDMI-A-1 position 1366,0
# output eDP-1 position 0,0 # output eDP-1 position 0,0
# } # }
kanshi >/dev/null 2>&1 & #kanshi >/dev/null 2>&1 &
# Launch a panel such as yambar or waybar. # Launch a panel such as yambar or waybar.
waybar >/dev/null 2>&1 & waybar >/dev/null 2>&1 &

View File

@ -74,6 +74,7 @@
ripgrep ripgrep
tre-command tre-command
gtop gtop
htop
# #
# Photo / Video # Photo / Video

View File

@ -80,6 +80,7 @@
wl-clipboard wl-clipboard
waybar waybar
wdisplays wdisplays
wlr-randr
xdg-utils xdg-utils
zsh zsh
] ]
@ -128,6 +129,16 @@
pulse.enable = true; pulse.enable = true;
}; };
services.greetd = {
enable = true;
settings = rec {
initial_session = {
command = "${pkgs.labwc}/bin/labwc";
user = "jaci";
};
default_session = initial_session;
};
};
### ###
## Misc ## Misc
### ###

View File

@ -12,7 +12,10 @@
boot.initrd.kernelModules = [ "amdgpu" ]; boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
boot.kernelParams = [
# Fix for The Finals
"clearcpuid=304"
];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-label/NIXROOT"; { device = "/dev/disk/by-label/NIXROOT";
fsType = "ext4"; fsType = "ext4";