Enable xrdp, replace exa with eza
This commit is contained in:
parent
c5ff668300
commit
50ba75cdbb
2
base.nix
2
base.nix
|
@ -42,7 +42,7 @@
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
bat
|
bat
|
||||||
bottom
|
bottom
|
||||||
exa
|
unstable.eza
|
||||||
git
|
git
|
||||||
gnugrep
|
gnugrep
|
||||||
gnutar
|
gnutar
|
||||||
|
|
|
@ -4,6 +4,8 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
desktopManager.xfce.enable = true;
|
desktopManager.xfce.enable = true;
|
||||||
videoDrivers = [ "nvidia" ];
|
videoDrivers = [ "nvidia" ];
|
||||||
|
layout = "us,no";
|
||||||
|
xkbVariant = "intl";
|
||||||
};
|
};
|
||||||
services.picom.enable = true;
|
services.picom.enable = true;
|
||||||
hardware.opengl.enable = true;
|
hardware.opengl.enable = true;
|
||||||
|
@ -30,4 +32,11 @@
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Remote:
|
||||||
|
services.xrdp = {
|
||||||
|
enable = true;
|
||||||
|
defaultWindowManager = "xfce4-session";
|
||||||
|
openFirewall = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
bottom
|
bottom
|
||||||
cocoapods
|
cocoapods
|
||||||
emacs
|
emacs
|
||||||
exa
|
unstable.eza
|
||||||
gnutar
|
gnutar
|
||||||
iterm2
|
iterm2
|
||||||
ncdu
|
ncdu
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
shellAliases."rebuild" = "darwin-rebuild switch --flake /Users/felixalb/nix";
|
shellAliases."rebuild" = "darwin-rebuild switch --flake /Users/felixalb/nix";
|
||||||
prezto.pmodules = [ "ssh" ];
|
prezto.pmodules = [ "ssh" ];
|
||||||
}
|
};
|
||||||
|
|
||||||
# Copy Applications to ~/Applications to allow them to be launched from Spotlight
|
# Copy Applications to ~/Applications to allow them to be launched from Spotlight
|
||||||
disabledModules = [ "targets/darwin/linkapps.nix" ];
|
disabledModules = [ "targets/darwin/linkapps.nix" ];
|
||||||
|
|
Loading…
Reference in New Issue