Changed some files

This commit is contained in:
FredzyW 2024-07-16 18:05:48 +02:00
parent e51bec4039
commit 447c5387c3
2 changed files with 26 additions and 8 deletions

View file

@ -7,6 +7,9 @@
pkgs,
...
}: {
imports = [
../shared/vial.nix
];
nixpkgs = {
overlays = [
];
@ -18,6 +21,8 @@
nix.registry = (lib.mapAttrs (_: flake: {inherit flake;})) ((lib.filterAttrs (_: lib.isType "flake")) inputs);
nix.nixPath = ["/etc/nix/path"];
users.defaultUserShell = pkgs.bash;
# environment.systemPackages = with pkgs; [
# ];
programs.fish.enable = true;
programs.bash = {
interactiveShellInit = ''
@ -108,18 +113,24 @@
};
};
environment.systemPackages = [(
pkgs.catppuccin-sddm.override {
flavor = "mocha";
font = "FiraCode Nerd Font Bold";
fontSize = "17";
background = "${../wallpapers/inverted.png}";
loginBackground = true;
}
environment.systemPackages = with pkgs; [(
catppuccin-sddm.override {
flavor = "mocha";
font = "FiraCode Nerd Font Bold";
fontSize = "17";
background = "${../wallpapers/inverted.png}";
loginBackground = true;
}
)];
services = {
udev = {
packages = with pkgs; [
vial
via
];
};
openssh = {
enable = true;
};