Compare commits

...

3 commits

Author SHA1 Message Date
Laureηt ecbdae6417
⬆️ nix flake update 2024-10-05 18:48:22 +02:00
Laureηt a40c6064f2
(home) add nix-index 2024-10-05 18:47:51 +02:00
Laureηt c456799baf
️ (aurum) enable impermanence and disko (I reinstalled the machine) 2024-10-05 18:47:19 +02:00
9 changed files with 34 additions and 38 deletions

View file

@ -170,11 +170,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1727977578, "lastModified": 1728109432,
"narHash": "sha256-DBORKcmQ7ZjA4qE1MsnF1MmZSokOGrw4W9vTCioOv2U=", "narHash": "sha256-wmbErh8FG7dRKOtMMpHUqDtFjeqt9Zjx4zssSeTalwU=",
"owner": "nix-community", "owner": "nix-community",
"repo": "disko", "repo": "disko",
"rev": "574400001b3ffe555c7a21e0ff846230759be2ed", "rev": "48ebb577855fb2398653f033b3b2208a9249203d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -475,11 +475,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1727802920, "lastModified": 1728018373,
"narHash": "sha256-HP89HZOT0ReIbI7IJZJQoJgxvB2Tn28V6XS3MNKnfLs=", "narHash": "sha256-NOiTvBbRLIOe5F6RbHaAh6++BNjsb149fGZd1T4+KBg=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "27e30d177e57d912d614c88c622dcfdb2e6e6515", "rev": "bc947f541ae55e999ffdb4013441347d83b00feb",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -8,6 +8,7 @@
./git.nix ./git.nix
./micro.nix ./micro.nix
./ssh.nix ./ssh.nix
./nix-index.nix
./mpv.nix ./mpv.nix
./tmux.nix ./tmux.nix
./fish.nix ./fish.nix

8
home/shell/nix-index.nix Normal file
View file

@ -0,0 +1,8 @@
{...}: {
programs.command-not-found.enable = false;
programs.nix-index = {
enable = true;
enableFishIntegration = true;
};
}

View file

@ -10,16 +10,15 @@
imports = [ imports = [
./audio.nix ./audio.nix
./boot.nix ./boot.nix
# ./disko.nix ./disko.nix
./docker.nix ./docker.nix
./fonts.nix ./fonts.nix
./hardware.nix ./hardware.nix
./i18n.nix ./i18n.nix
# ./impermanence.nix ./impermanence.nix
# ./lanzaboot.nix # ./lanzaboot.nix
./networking.nix ./networking.nix
./nix.nix ./nix.nix
./partitions.nix
./security.nix ./security.nix
./users.nix ./users.nix
]; ];

View file

@ -51,15 +51,15 @@
}; };
}; };
}; };
nodev = { };
"/" = { nodev = {
fsType = "tmpfs"; "/" = {
mountOptions = [ fsType = "tmpfs";
"defaults" mountOptions = [
"mode=755" "defaults"
"size=8G" "mode=755"
]; "size=8G"
}; ];
}; };
}; };
}; };

View file

@ -1,5 +1,5 @@
{...}: { {...}: {
# hardware # graphics
hardware.graphics.enable = true; hardware.graphics.enable = true;
# logind configuration # logind configuration
@ -20,6 +20,9 @@
# backlight intensity # backlight intensity
programs.light.enable = true; programs.light.enable = true;
# impermanence
fileSystems."/persist".requiredForBoot = true;
# webcam # webcam
# hardware.firmware = [ # hardware.firmware = [
# pkgs.ivsc-firmware # pkgs.ivsc-firmware

View file

@ -1,5 +1,5 @@
{...}: { {...}: {
environment.persistence."/persistent" = { environment.persistence."/persist" = {
hideMounts = true; hideMounts = true;
directories = [ directories = [
"/var/log" "/var/log"

View file

@ -1,15 +0,0 @@
{...}: {
fileSystems."/" =
{ device = "/dev/disk/by-uuid/288c6720-f583-4756-b74d-27eabf496d09";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/CBDD-1148";
fsType = "vfat";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/ccdd234e-b58a-440b-b951-4fef68c3812c"; }
];
}

View file

@ -24,10 +24,10 @@ in {
./aurum ./aurum
inputs.catppuccin.nixosModules.catppuccin inputs.catppuccin.nixosModules.catppuccin
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
# inputs.disko.nixosModules.default inputs.disko.nixosModules.default
# inputs.lanzaboote.nixosModules.lanzaboote inputs.impermanence.nixosModules.impermanence
# inputs.impermanence.nixosModules.impermanence
inputs.nixos-hardware.nixosModules.dell-xps-13-9315 inputs.nixos-hardware.nixosModules.dell-xps-13-9315
# inputs.lanzaboote.nixosModules.lanzaboote
{inherit home-manager;} {inherit home-manager;}
]; ];
}; };