Update hypnos config
This commit is contained in:
parent
8ec41e2960
commit
41f62a3890
@ -5,6 +5,10 @@
|
|||||||
nixpkgs.url = "nixpkgs/nixos-23.11";
|
nixpkgs.url = "nixpkgs/nixos-23.11";
|
||||||
agenix.url = "github:ryantm/agenix";
|
agenix.url = "github:ryantm/agenix";
|
||||||
deploy-rs.url = "github:serokell/deploy-rs";
|
deploy-rs.url = "github:serokell/deploy-rs";
|
||||||
|
disko = {
|
||||||
|
url = "github:nix-community/disko";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager/release-23.11";
|
url = "github:nix-community/home-manager/release-23.11";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
@ -24,7 +28,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs @ { self, nixpkgs, agenix, deploy-rs, home-manager, nixos-hardware, secrets, ... }:
|
outputs = inputs @ { self, nixpkgs, agenix, deploy-rs, disko, home-manager, nixos-hardware, secrets, ... }:
|
||||||
let
|
let
|
||||||
nixpkgsForSystem = system: inputs.nixpkgs;
|
nixpkgsForSystem = system: inputs.nixpkgs;
|
||||||
overlays = [
|
overlays = [
|
||||||
@ -33,6 +37,7 @@
|
|||||||
];
|
];
|
||||||
commonModules = [
|
commonModules = [
|
||||||
agenix.nixosModules.age
|
agenix.nixosModules.age
|
||||||
|
disko.nixosModules.disko
|
||||||
home-manager.nixosModule
|
home-manager.nixosModule
|
||||||
./modules
|
./modules
|
||||||
];
|
];
|
||||||
@ -66,6 +71,7 @@
|
|||||||
atlas = nixosSystem { system = "x86_64-linux"; name = "atlas"; };
|
atlas = nixosSystem { system = "x86_64-linux"; name = "atlas"; };
|
||||||
eos = nixosSystem { system = "x86_64-linux"; name = "eos"; };
|
eos = nixosSystem { system = "x86_64-linux"; name = "eos"; };
|
||||||
helios = nixosSystem { system = "x86_64-linux"; name = "helios"; };
|
helios = nixosSystem { system = "x86_64-linux"; name = "helios"; };
|
||||||
|
hypnos = nixosSystem { system = "x86_64-linux"; name = "hypnos"; };
|
||||||
odyssey = nixosSystem { system = "x86_64-linux"; name = "odyssey"; };
|
odyssey = nixosSystem { system = "x86_64-linux"; name = "odyssey"; };
|
||||||
pi = nixosSystem { system = "aarch64-linux"; name = "pi"; extraModules = [ nixos-hardware.nixosModules.raspberry-pi-4 ]; };
|
pi = nixosSystem { system = "aarch64-linux"; name = "pi"; extraModules = [ nixos-hardware.nixosModules.raspberry-pi-4 ]; };
|
||||||
};
|
};
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
./disko-config.nix
|
||||||
../desktop.nix
|
../desktop.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -14,7 +15,6 @@
|
|||||||
networking = {
|
networking = {
|
||||||
hostName = "hypnos";
|
hostName = "hypnos";
|
||||||
hostId = "cf791898";
|
hostId = "cf791898";
|
||||||
networkmanager.enable = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
{ lib, ... }:
|
||||||
{
|
{
|
||||||
disko.devices = {
|
disko.devices = {
|
||||||
disk = {
|
disk = {
|
||||||
@ -39,15 +40,16 @@
|
|||||||
dnodesize = "auto";
|
dnodesize = "auto";
|
||||||
xattr = "sa";
|
xattr = "sa";
|
||||||
};
|
};
|
||||||
mountpoint = "/";
|
|
||||||
postCreateHook = "zfs snapshot rpool@blank";
|
postCreateHook = "zfs snapshot rpool@blank";
|
||||||
datasets = {
|
datasets = {
|
||||||
local = {
|
local = {
|
||||||
|
type = "zfs_fs";
|
||||||
options = {
|
options = {
|
||||||
mountpoint = "none";
|
mountpoint = "none";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"local/nix" = {
|
"local/nix" = {
|
||||||
|
type = "zfs_fs";
|
||||||
mountpoint = "/nix";
|
mountpoint = "/nix";
|
||||||
options = {
|
options = {
|
||||||
atime = "off";
|
atime = "off";
|
||||||
@ -55,6 +57,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
"local/tmp" = {
|
"local/tmp" = {
|
||||||
|
type = "zfs_fs";
|
||||||
mountpoint = "/tmp";
|
mountpoint = "/tmp";
|
||||||
options = {
|
options = {
|
||||||
setuid = "off";
|
setuid = "off";
|
||||||
@ -63,24 +66,21 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
system = {
|
system = {
|
||||||
|
type = "zfs_fs";
|
||||||
|
mountpoint = "/";
|
||||||
options = {
|
options = {
|
||||||
mountpoint = "none";
|
mountpoint = "legacy";
|
||||||
encryption = "aes-256-gcm";
|
|
||||||
keyformat = "passphrase";
|
|
||||||
keylocation = "file:///tmp/secret.key";
|
|
||||||
};
|
};
|
||||||
# use this to read the key during boot
|
|
||||||
postCreateHook = ''
|
|
||||||
zfs set keylocation="prompt" "rpool/$name";
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
"system/var" = {
|
"system/var" = {
|
||||||
|
type = "zfs_fs";
|
||||||
mountpoint = "/var";
|
mountpoint = "/var";
|
||||||
options = {
|
options = {
|
||||||
mountpoint = "legacy";
|
mountpoint = "legacy";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"system/var/tmp" = {
|
"system/var/tmp" = {
|
||||||
|
type = "zfs_fs";
|
||||||
mountpoint = "/var/tmp";
|
mountpoint = "/var/tmp";
|
||||||
options = {
|
options = {
|
||||||
devices = "off";
|
devices = "off";
|
||||||
@ -88,6 +88,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
"system/var/log" = {
|
"system/var/log" = {
|
||||||
|
type = "zfs_fs";
|
||||||
mountpoint = "/var/log";
|
mountpoint = "/var/log";
|
||||||
options = {
|
options = {
|
||||||
compression = "on";
|
compression = "on";
|
||||||
@ -96,6 +97,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
user = {
|
user = {
|
||||||
|
type = "zfs_fs";
|
||||||
options = {
|
options = {
|
||||||
mountpoint = "none";
|
mountpoint = "none";
|
||||||
encryption = "aes-256-gcm";
|
encryption = "aes-256-gcm";
|
||||||
@ -108,6 +110,7 @@
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
"user/home" = {
|
"user/home" = {
|
||||||
|
type = "zfs_fs";
|
||||||
mountpoint = "/home";
|
mountpoint = "/home";
|
||||||
options = {
|
options = {
|
||||||
setuid = "off";
|
setuid = "off";
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
initrd.availableKernelModules = [ "xhci_pci" "achi" "usbhid" "usb_storage" "sd_mod" ];
|
initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
||||||
initrd.kernelModules = [ ];
|
initrd.kernelModules = [ ];
|
||||||
kernelModules = [ "kvm-intel" "wl" ];
|
kernelModules = [ "kvm-intel" "wl" ];
|
||||||
extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
|
extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
|
||||||
|
@ -102,6 +102,9 @@ in {
|
|||||||
picture-uri = "file://${pkgs.gnome.gnome-backgrounds}/share/backgrounds/gnome/adwaita-l.jpg";
|
picture-uri = "file://${pkgs.gnome.gnome-backgrounds}/share/backgrounds/gnome/adwaita-l.jpg";
|
||||||
picture-uri-dark = "file://${pkgs.gnome.gnome-backgrounds}/share/backgrounds/gnome/adwaita-d.jpg";
|
picture-uri-dark = "file://${pkgs.gnome.gnome-backgrounds}/share/backgrounds/gnome/adwaita-d.jpg";
|
||||||
};
|
};
|
||||||
|
"org/gnome/peripherals/touchpad" = {
|
||||||
|
tap-to-click = true;
|
||||||
|
};
|
||||||
"org/gtk/settings/file-chooser" = {
|
"org/gtk/settings/file-chooser" = {
|
||||||
show-hidden = true;
|
show-hidden = true;
|
||||||
sort-directories-first = true;
|
sort-directories-first = true;
|
||||||
|
@ -23,6 +23,7 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
|
networkmanager.unmanaged = [ "*" ];
|
||||||
wireless = {
|
wireless = {
|
||||||
enable = true;
|
enable = true;
|
||||||
interfaces = cfg.interfaces;
|
interfaces = cfg.interfaces;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user