move niri to home

This commit is contained in:
Simon Gardling 2024-09-17 12:21:19 -04:00
parent 43e57d1f76
commit 421d94be51
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D
6 changed files with 18 additions and 15 deletions

View File

@ -50,7 +50,7 @@
initrd = {
compressor = "zstd";
compressorArgs = [ "-1" ];
compressorArgs = [ "-19" ];
};
};

View File

@ -332,11 +332,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1726582987,
"narHash": "sha256-mvlNdlD3myhLleFls5OVqaPcCVEgji0r5CmA4gX+/b4=",
"lastModified": 1726589318,
"narHash": "sha256-qk/Ot2p4LwzNy8Fv1Wnz0dOf0IszEh9NCCtEHo79sAw=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "6201ced8aa80b857841f7a1212594e1e62c4d67e",
"rev": "839e56fb7b9facb0286f3a23c26f34c95e623731",
"type": "github"
},
"original": {

View File

@ -101,7 +101,6 @@
environment.systemPackages = with pkgs; [
distrobox
niri
];
#weird hack to get swaylock working? idk, if you don't put this here, password entry doesnt work

View File

@ -153,11 +153,11 @@
"xwayland-satellite-unstable": "xwayland-satellite-unstable"
},
"locked": {
"lastModified": 1726548583,
"narHash": "sha256-jJ0dMdLIyh+4Vrn2S4yvFbhfCAOMDe2kKlQwFoQytEs=",
"lastModified": 1726586848,
"narHash": "sha256-sW5pB0YTcvex8sjVMOffDZsOMp7rwco4MGuVrQk1HL0=",
"owner": "sodiboo",
"repo": "niri-flake",
"rev": "787b96e1294932241a9c05ecdea0ae784b33cea6",
"rev": "c62ad7457b38f4f14aa5e57e9299441976fcc662",
"type": "github"
},
"original": {
@ -201,11 +201,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1726582987,
"narHash": "sha256-mvlNdlD3myhLleFls5OVqaPcCVEgji0r5CmA4gX+/b4=",
"lastModified": 1726589318,
"narHash": "sha256-qk/Ot2p4LwzNy8Fv1Wnz0dOf0IszEh9NCCtEHo79sAw=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "6201ced8aa80b857841f7a1212594e1e62c4d67e",
"rev": "839e56fb7b9facb0286f3a23c26f34c95e623731",
"type": "github"
},
"original": {
@ -229,11 +229,11 @@
},
"nixpkgs-stable": {
"locked": {
"lastModified": 1726320982,
"narHash": "sha256-RuVXUwcYwaUeks6h3OLrEmg14z9aFXdWppTWPMTwdQw=",
"lastModified": 1726447378,
"narHash": "sha256-2yV8nmYE1p9lfmLHhOCbYwQC/W8WYfGQABoGzJOb1JQ=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "8f7492cce28977fbf8bd12c72af08b1f6c7c3e49",
"rev": "086b448a5d54fd117f4dc2dee55c9f0ff461bdc1",
"type": "github"
},
"original": {

View File

@ -88,7 +88,10 @@
(
{ pkgs, ... }:
{
nixpkgs.overlays = [ rust-overlay.overlays.default ];
nixpkgs.overlays = [
rust-overlay.overlays.default
niri.overlays.niri
];
# home-manager stuff
home = {

View File

@ -28,6 +28,7 @@
#window manager
programs.niri = {
package = pkgs.niri-unstable;
settings = import ./progs/niri.nix { inherit config pkgs homeDirectory; };
};