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