dotfiles/machines/common/linux/default.nix

51 lines
647 B
Nix
Raw Normal View History

2024-05-07 18:20:52 +02:00
{ pkgs, ... }:
{
imports = [
./boot.nix
./cosmic.nix
2023-12-07 15:40:49 +01:00
./gnome.nix
./greeter.nix
2023-05-18 15:19:31 +02:00
./input.nix
./network.nix
2024-05-01 20:59:54 +02:00
./podman.nix
./sound.nix
2023-12-07 15:40:49 +01:00
./sway.nix
];
2023-03-28 12:59:48 +02:00
console.colors = [
"1e1e2e"
"585b70"
"bac2de"
"a6adc8"
"f38ba8"
"f38ba8"
"a6e3a1"
"a6e3a1"
"f9e2af"
"f9e2af"
"89b4fa"
"89b4fa"
"f5c2e7"
"f5c2e7"
"94e2d5"
"94e2d5"
];
2023-04-27 09:30:26 +02:00
2023-06-01 02:42:19 +02:00
programs.nix-ld.enable = true;
2023-04-27 09:30:26 +02:00
programs.zsh.enable = true;
2024-05-07 18:20:52 +02:00
environment.systemPackages = [ pkgs.xdg-utils ];
2023-06-24 21:24:20 +02:00
2023-12-07 15:40:49 +01:00
# enable yubikey u2f support
security.pam.u2f = {
enable = true;
2024-07-28 18:09:11 +02:00
settings.cue = true;
2023-12-07 15:40:49 +01:00
};
}