Compare commits
No commits in common. "f7ffc5cdf968786556f0976ee1e9cead371d7f2b" and "7b5e8dc4cdd803e9e31228e43bc33dcc81f71bba" have entirely different histories.
f7ffc5cdf9
...
7b5e8dc4cd
4 changed files with 40 additions and 20 deletions
|
@ -19,9 +19,6 @@
|
|||
};
|
||||
};
|
||||
|
||||
# optimize power usage
|
||||
powerManagement.enable = true;
|
||||
|
||||
# optimize storage
|
||||
nix.optimise.automatic = true;
|
||||
|
||||
|
@ -68,6 +65,37 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
# services.greetd = {
|
||||
# enable = true;
|
||||
# package = pkgs.greetd.gtkgreet;
|
||||
# settings = {
|
||||
# default_session = {
|
||||
# command = "Hyprland --config /etc/greetd/hyprland.conf";
|
||||
# user = "greeter";
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# environment.etc."greetd/environments".text = ''
|
||||
# Hyprland
|
||||
# '';
|
||||
# environment.etc."greetd/hyprland.conf".text = ''
|
||||
# monitor = DP-3,2560x1440@144,1920x0,1
|
||||
# monitor = HDMI-A-5,1920x1080@75,0x0,1
|
||||
# misc {
|
||||
# disable_hyprland_logo = true
|
||||
# }
|
||||
|
||||
# exec-once = tuigreet -l -b /etc/greetd/wallpaper.jpg -s /etc/greetd/style.css; hyprctl dispatch exit
|
||||
# '';
|
||||
# environment.etc."greetd/wallpaper.jpg".source = ./hypr/wallpaper.jpg;
|
||||
# environment.etc."greetd/style.css".text = ''
|
||||
# window {
|
||||
# background-position: center;
|
||||
# background-repeat: no-repeat;
|
||||
# background-size: cover;
|
||||
# background-color: black;
|
||||
# }
|
||||
# '';
|
||||
|
||||
# Configure console keymap
|
||||
console.keyMap = "us";
|
||||
|
|
|
@ -8,11 +8,10 @@
|
|||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" "amdgpu" ];
|
||||
boot.initrd.kernelModules = [ "amdgpu" ];
|
||||
boot.kernelModules = [ "amdgpu" ];
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
boot.kernelParams = [ "video=DP-1:2560x1440@144" "video=HDMI-A-1:1920x1080@75" ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/2191540a-8cf9-400e-b4bc-9dbf71527b07";
|
||||
|
|
|
@ -6,13 +6,13 @@
|
|||
xwayland.enable = true;
|
||||
settings = {
|
||||
workspace = [
|
||||
"1, monitor:HDMI-A-1, default:true, persistent:true"
|
||||
"2, monitor:DP-1 , default:true, persistent:true"
|
||||
"1, monitor:HDMI-A-3, default:true, persistent:true"
|
||||
"2, monitor:DP-3 , default:true, persistent:true"
|
||||
"special:scratchpad, on-created-empty:foot"
|
||||
];
|
||||
monitor = [
|
||||
"DP-1 , 2560x1440@144, 1920x0, 1"
|
||||
"HDMI-A-1, 1920x1080@75 , 0x0 , 1"
|
||||
"DP-3 , 2560x1440@144, 1920x0, 1"
|
||||
"HDMI-A-5, 1920x1080@75 , 0x0 , 1"
|
||||
];
|
||||
input = {
|
||||
kb_layout = "de";
|
||||
|
@ -84,14 +84,10 @@
|
|||
"$mod, 2, workspace, 2"
|
||||
"$mod, 3, workspace, 3"
|
||||
"$mod, 4, workspace, 4"
|
||||
"$mod, 5, workspace, 5"
|
||||
"$mod, 6, workspace, 6"
|
||||
"$modd, 1, movetoworkspacesilent, 1"
|
||||
"$modd, 2, movetoworkspacesilent, 2"
|
||||
"$modd, 3, movetoworkspacesilent, 3"
|
||||
"$modd, 4, movetoworkspacesilent, 4"
|
||||
"$modd, 5, movetoworkspacesilent, 5"
|
||||
"$modd, 6, movetoworkspacesilent, 6"
|
||||
|
||||
# fullscreen
|
||||
"$mod, F11, fullscreen, 0"
|
||||
|
|
|
@ -33,15 +33,12 @@
|
|||
ripgrep
|
||||
fd
|
||||
zoom-us
|
||||
obsidian
|
||||
zotero
|
||||
|
||||
# development
|
||||
jetbrains.idea-ultimate
|
||||
gnumake
|
||||
texliveFull
|
||||
# texlive.combined.scheme-full
|
||||
# ltex-ls
|
||||
texlive.combined.scheme-full
|
||||
ltex-ls
|
||||
ghostscript
|
||||
jdk11
|
||||
coq
|
||||
|
|
Loading…
Reference in a new issue