Compare commits
4 commits
769c2c53f1
...
f173a43c72
Author | SHA1 | Date | |
---|---|---|---|
|
f173a43c72 | ||
|
caa0ae4fe2 | ||
|
7b01c5444a | ||
|
1339fe6e58 |
|
@ -16,12 +16,15 @@
|
|||
|
||||
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||
|
||||
# https://nixos.wiki/wiki/AMD_GPU
|
||||
boot.initrd.kernelModules = ["amdgpu"];
|
||||
services.xserver.videoDrivers = ["amdgpu"];
|
||||
hardware.graphics.extraPackages = with pkgs; [
|
||||
rocmPackages.clr.icd
|
||||
amdvlk
|
||||
driversi686Linux.amdvlk
|
||||
];
|
||||
hardware.graphics.enable32Bit = true; # For 32 bit applications
|
||||
|
||||
# It is an open-source implementation of Nvidia’s Moonlight game streaming application
|
||||
services.sunshine = {
|
||||
|
@ -32,8 +35,9 @@
|
|||
};
|
||||
|
||||
home-manager.users.${username}.wayland.windowManager.hyprland.settings.monitor = [
|
||||
"HDMI-A-1, 1920x1080@75, 0x0, 1"
|
||||
"DP-2, 1920x1080@60, 0x0, 1"
|
||||
"DP-1, 2560x1440@165, 1920x0, 1.333333"
|
||||
"HDMI-A-1, 1920x1080@75, 3840x0, 1"
|
||||
];
|
||||
|
||||
services.sshd.enable = true;
|
||||
|
|
|
@ -18,5 +18,10 @@
|
|||
|
||||
environment.systemPackages = with pkgs; [
|
||||
networkmanagerapplet
|
||||
|
||||
wireguard-tools
|
||||
|
||||
openconnect
|
||||
networkmanager-openconnect
|
||||
];
|
||||
}
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
++ [(import ./kdeconnect.nix)]
|
||||
++ [(import ./kitty.nix)] # terminal
|
||||
++ [(import ./swaync)] # notification deamon
|
||||
++ [(import ./nemo.nix)] # File manager
|
||||
++ [(import ./nextcloud.nix)] # nextcloud client
|
||||
++ [(import ./nvim.nix)] # neovim editor
|
||||
++ [(import ./packages.nix)] # other packages
|
||||
|
|
|
@ -1,10 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
dconf.settings = {
|
||||
"org/cinnamon/desktop/applications/terminal" = {
|
||||
exec = "kitty";
|
||||
};
|
||||
};
|
||||
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
|
||||
|
|
13
modules/home/nemo.nix
Normal file
13
modules/home/nemo.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [nemo-with-extensions];
|
||||
|
||||
xdg.mimeApps.defaultApplications = {
|
||||
"inode/directory" = ["nemo.desktop"];
|
||||
"application/x-gnome-saved-search" = ["nemo.desktop"];
|
||||
};
|
||||
dconf.settings = {
|
||||
"org/cinnamon/desktop/applications/terminal" = {
|
||||
exec = "kitty";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -37,7 +37,6 @@
|
|||
inkscape
|
||||
kdePackages.kleopatra # Gpg GUI
|
||||
lazygit
|
||||
nemo-with-extensions # file manager
|
||||
jq
|
||||
nitch # systhem fetch util
|
||||
nix-prefetch-github
|
||||
|
|
Loading…
Reference in a new issue