Fix crow disks

This commit is contained in:
KnightArtorias 2026-03-06 01:03:59 +00:00
parent 5f02a71bb7
commit f72eb35939
5 changed files with 40 additions and 23 deletions

42
flake.lock generated
View file

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1771756436,
"narHash": "sha256-Tl2I0YXdhSTufGqAaD1ySh8x+cvVsEI1mJyJg12lxhI=",
"lastModified": 1772633327,
"narHash": "sha256-jl+DJB2DUx7EbWLRng+6HNWW/1/VQOnf0NsQB4PlA7I=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "5bd3589390b431a63072868a90c0f24771ff4cbb",
"rev": "5a75730e6f21ee624cbf86f4915c6e7489c74acc",
"type": "github"
},
"original": {
@ -22,11 +22,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1771369470,
"narHash": "sha256-0NBlEBKkN3lufyvFegY4TYv5mCNHbi5OmBDrzihbBMQ=",
"lastModified": 1772542754,
"narHash": "sha256-WGV2hy+VIeQsYXpsLjdr4GvHv5eECMISX1zKLTedhdg=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "0182a361324364ae3f436a63005877674cf45efb",
"rev": "8c809a146a140c5c8806f13399592dbcb1bb5dc4",
"type": "github"
},
"original": {
@ -39,14 +39,15 @@
"inputs": {
"nixpkgs": [
"nixpkgs"
]
],
"noctalia-qs": "noctalia-qs"
},
"locked": {
"lastModified": 1771756937,
"narHash": "sha256-eeF+rEdWTvlNBdSBnVpnIcKUoRtdgvQtG9RCJCbuq9Q=",
"lastModified": 1772659442,
"narHash": "sha256-F1oSoSwGvBiqtSfGU9YzsjL9sP6IQDYQeUIQbXma70U=",
"owner": "noctalia-dev",
"repo": "noctalia-shell",
"rev": "76a58bcd611264d107c575df610bd34b68c5498f",
"rev": "c56fa106b7d8c6ae3034ce6d706bc35432ac9ea6",
"type": "github"
},
"original": {
@ -55,6 +56,27 @@
"type": "github"
}
},
"noctalia-qs": {
"inputs": {
"nixpkgs": [
"noctalia",
"nixpkgs"
]
},
"locked": {
"lastModified": 1772227064,
"narHash": "sha256-f821ZSoGpa/aXrWq0gPpea9qBnX8KDyavGKkptz2Mog=",
"owner": "noctalia-dev",
"repo": "noctalia-qs",
"rev": "0741d27d2f7db567270f139c5d1684614ecf9863",
"type": "github"
},
"original": {
"owner": "noctalia-dev",
"repo": "noctalia-qs",
"type": "github"
}
},
"root": {
"inputs": {
"home-manager": "home-manager",

View file

@ -24,15 +24,4 @@
networking.hostName = "crow";
networking.hostId = "0b83186c";
fileSystems."/home/${vars.user}/Games/Steam" = {
device = "/dev/disk/by-uuid/312227de-38a9-4475-9e46-fecc232f2002";
fsType = "ext4";
options = [
"users"
"nofail"
"noatime"
];
};
}

View file

@ -24,6 +24,12 @@
options = [ "fmask=0022" "dmask=0022" ];
};
fileSystems."/mnt/steam" =
{ device = "/dev/dis/by-uuid/f800bb63-5798-4faa-b2d2-50073215e391";
fsType = "ext4";
options = [ "users" "nofail" "exec" "defaults" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/d7fbd2b2-c943-457b-afc1-ad355d30a5c2"; }
];

View file

@ -20,7 +20,7 @@
pciutils
];
fonts.fonts = with pkgs; [
fonts.packages = with pkgs; [
nerd-fonts.fira-code
nerd-fonts.droid-sans-mono
noto-fonts

View file

@ -2,7 +2,7 @@
let
aagl-gtk-on-nix = import (builtins.fetchTarball {
url = "https://github.com/ezKEa/aagl-gtk-on-nix/archive/main.tar.gz";
sha256 = "1zvj4a1qly9kpvawinrabyak3g70p02dkqbl8pdd2z4icc4jha5l";
sha256 = "19d1a4x3kcdzi0w8bzll8ws3hpnz3nrxdknc8vsrpyngbp3ws8ik";
});
in
{