update
This commit is contained in:
parent
44dc207b5b
commit
59e69924bb
|
@ -135,7 +135,7 @@
|
||||||
lshw
|
lshw
|
||||||
steamcmd
|
steamcmd
|
||||||
distrobox
|
distrobox
|
||||||
steamcmd
|
|
||||||
|
|
||||||
config.materus.profile.packages.firefox
|
config.materus.profile.packages.firefox
|
||||||
config.programs.java.package
|
config.programs.java.package
|
||||||
|
|
|
@ -16,13 +16,26 @@
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
{
|
{
|
||||||
device = "/dev/disk/by-label/NixOS_Root";
|
device = "/dev/disk/by-label/NixOS_Root_Laptop";
|
||||||
fsType = "ext4";
|
fsType = "btrfs";
|
||||||
|
options = [ "subvol=@" "noatime" "ssd" "space_cache=v2" "compress=zstd" ];
|
||||||
|
};
|
||||||
|
fileSystems."/nix" =
|
||||||
|
{
|
||||||
|
device = "/dev/disk/by-label/NixOS_Root_Laptop";
|
||||||
|
fsType = "btrfs";
|
||||||
|
options = [ "subvol=@nix" "noatime" "compress=zstd" "ssd" "space_cache=v2" ];
|
||||||
|
};
|
||||||
|
fileSystems."/boot" =
|
||||||
|
{
|
||||||
|
device = "/dev/disk/by-label/NixOS_Root_Laptop";
|
||||||
|
fsType = "btrfs";
|
||||||
|
options = [ "subvol=@boot" "ssd" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot/efi" =
|
fileSystems."/boot/efi" =
|
||||||
{
|
{
|
||||||
device = "/dev/disk/by-label/NixOS_EFI";
|
device = "/dev/disk/by-label/NixOS_EFI_L";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
llvmpkgs.libllvm
|
llvmpkgs.libllvm
|
||||||
llvmpkgs.libllvm.dev
|
llvmpkgs.libllvm.dev
|
||||||
|
|
||||||
|
raylib
|
||||||
gcc
|
gcc
|
||||||
gdb
|
gdb
|
||||||
nil
|
nil
|
||||||
|
|
|
@ -72,6 +72,8 @@ let
|
||||||
pkgs.x264.lib
|
pkgs.x264.lib
|
||||||
pkgs.steamtinkerlaunch
|
pkgs.steamtinkerlaunch
|
||||||
pkgs.pipewire
|
pkgs.pipewire
|
||||||
|
pkgs.gitFull
|
||||||
|
pkgs.git-lfs
|
||||||
|
|
||||||
] ++ config.materus.profile.packages.list.fonts ++ config.materus.profile.steam.extraPkgs;
|
] ++ config.materus.profile.packages.list.fonts ++ config.materus.profile.steam.extraPkgs;
|
||||||
|
|
||||||
|
@ -86,6 +88,8 @@ let
|
||||||
pkgs.gnutls
|
pkgs.gnutls
|
||||||
pkgs.samba
|
pkgs.samba
|
||||||
pkgs.tdb
|
pkgs.tdb
|
||||||
|
pkgs.jemalloc
|
||||||
|
pkgs.gperftools
|
||||||
] ++
|
] ++
|
||||||
(with config.hardware.opengl; if pkgs.hostPlatform.is64bit
|
(with config.hardware.opengl; if pkgs.hostPlatform.is64bit
|
||||||
then [ package ] ++ extraPackages
|
then [ package ] ++ extraPackages
|
||||||
|
|
12
flake.lock
12
flake.lock
|
@ -211,11 +211,11 @@
|
||||||
"nur": "nur"
|
"nur": "nur"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1703084866,
|
"lastModified": 1706212521,
|
||||||
"narHash": "sha256-tuJS6LFveE9ZU32TtHRnaMzQ/5Jo+XTTJxniHVFDi1E=",
|
"narHash": "sha256-HBPSlLngxSjrWBzVsno3vL50hl5JLxfFfo+gMgYdIac=",
|
||||||
"owner": "materusPL",
|
"owner": "materusPL",
|
||||||
"repo": "Nixerus",
|
"repo": "Nixerus",
|
||||||
"rev": "ae5af742820306b2e25134b73f2952d6f62606b7",
|
"rev": "f2175b39f181d2303f265661b43fcf1f1dba4e7e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -366,11 +366,11 @@
|
||||||
},
|
},
|
||||||
"nur": {
|
"nur": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1702770334,
|
"lastModified": 1706211899,
|
||||||
"narHash": "sha256-MVILxIF9ZVIk0f9w3yYZpy8auwxgey0MFzdoIFFvQNU=",
|
"narHash": "sha256-gedJjTowTi71oxbYiMXRvzlbMthu2knSmvpuqe7QO4Y=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "NUR",
|
"repo": "NUR",
|
||||||
"rev": "1d37444620523278aa163bb9e30104f5d1152061",
|
"rev": "61c04b2e2cc15d505cab5c959df9388fde20525f",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
Loading…
Reference in New Issue