prep for semita install

This commit is contained in:
mrsu 2024-05-31 22:18:40 +01:00
parent 6ea135b770
commit 57e98861d7
3 changed files with 23 additions and 14 deletions

View File

@ -27,18 +27,18 @@
monitors = [ monitors = [
{ {
name = "Virtual-1"; name = "Virtual-1";
width = 2048; width = 1920;
height = 1152; height = 1440;
refreshRate = 60; refreshRate = 75;
x = 0; x = 0;
primary = true; primary = true;
} }
{ {
name = "Virtual-2"; name = "Virtual-2";
width = 2048; width = 1920;
height = 1152; height = 1440;
refreshRate = 60; refreshRate = 75;
x = 2048; x = 1920;
} }
]; ];
} }

View File

@ -25,6 +25,19 @@
home.sessionPath = [ home.sessionPath = [
]; ];
xdg.userDirs = {
enable = true;
createDirectories = true;
desktop = null;
documents = "/home/sam/docs";
download = "/home/sam/dl";
music = "/home/sam/mus";
pictures = "/home/sam/pics";
publicShare = "/home/sam/sync";
templates = null;
videos = "/home/sam/vids";
};
gtk.enable = true; gtk.enable = true;
gtk.cursorTheme.package = pkgs.bibata-cursors; gtk.cursorTheme.package = pkgs.bibata-cursors;
@ -43,7 +56,7 @@
home.sessionVariables = { home.sessionVariables = {
EDITOR="nvim"; EDITOR="nvim";
TERMINAL="kitty"; TERMINAL="alacritty";
READER="zathura"; READER="zathura";
IMAGE_VIEWER=""; IMAGE_VIEWER="";
IMAGE_EDITOR=""; IMAGE_EDITOR="";

View File

@ -2,7 +2,7 @@
let let
# Disko setup # Disko setup
fsType = "btrfs"; # one of ext4 or btrfs. Use btrfs if using impermanence fsType = "btrfs"; # one of ext4 or btrfs. Use btrfs if using impermanence
dev = "/dev/vda"; # depends on target hardware dev = "/dev/nvme0n1"; # depends on target hardware
encrypted = true; # currrently only applies to btrfs encrypted = true; # currrently only applies to btrfs
btrfsMountDevice = if encrypted then "/dev/mapper/crypted" else "/dev/root_vg/root"; btrfsMountDevice = if encrypted then "/dev/mapper/crypted" else "/dev/root_vg/root";
user = "sam"; user = "sam";
@ -46,11 +46,7 @@ in
hideMounts = true; hideMounts = true;
users.${user} = { users.${user} = {
directories = [ directories = [
"Sync" "/home/${user}"
"Keep"
".ssh"
".mozilla"
".local"
]; ];
}; };
}; };