prep for semita install
This commit is contained in:
parent
6ea135b770
commit
57e98861d7
|
@ -27,18 +27,18 @@
|
|||
monitors = [
|
||||
{
|
||||
name = "Virtual-1";
|
||||
width = 2048;
|
||||
height = 1152;
|
||||
refreshRate = 60;
|
||||
width = 1920;
|
||||
height = 1440;
|
||||
refreshRate = 75;
|
||||
x = 0;
|
||||
primary = true;
|
||||
}
|
||||
{
|
||||
name = "Virtual-2";
|
||||
width = 2048;
|
||||
height = 1152;
|
||||
refreshRate = 60;
|
||||
x = 2048;
|
||||
width = 1920;
|
||||
height = 1440;
|
||||
refreshRate = 75;
|
||||
x = 1920;
|
||||
}
|
||||
];
|
||||
}
|
||||
|
|
|
@ -25,6 +25,19 @@
|
|||
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.cursorTheme.package = pkgs.bibata-cursors;
|
||||
|
@ -43,7 +56,7 @@
|
|||
|
||||
home.sessionVariables = {
|
||||
EDITOR="nvim";
|
||||
TERMINAL="kitty";
|
||||
TERMINAL="alacritty";
|
||||
READER="zathura";
|
||||
IMAGE_VIEWER="";
|
||||
IMAGE_EDITOR="";
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
let
|
||||
# Disko setup
|
||||
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
|
||||
btrfsMountDevice = if encrypted then "/dev/mapper/crypted" else "/dev/root_vg/root";
|
||||
user = "sam";
|
||||
|
@ -46,11 +46,7 @@ in
|
|||
hideMounts = true;
|
||||
users.${user} = {
|
||||
directories = [
|
||||
"Sync"
|
||||
"Keep"
|
||||
".ssh"
|
||||
".mozilla"
|
||||
".local"
|
||||
"/home/${user}"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue