Merge branch 'main' of github.com:bloxx12/nichts

This commit is contained in:
get 2024-04-15 13:18:21 +02:00
commit d38a9acc02
5 changed files with 39 additions and 5 deletions

View file

@ -1,5 +1,10 @@
{ config, inputs, pkgs, ... }:
{
imports = [
./hyprland.nix
./programs.nix
];
nixpkgs.config.allowUnfree = true;
time.timeZone = "Europe/Zurich";
security.sudo.package = pkgs.sudo.override { withInsults = true; };
@ -62,6 +67,10 @@
enable = true;
catppuccin = true;
};
neovim = {
enable = true;
};
};
services = {
@ -99,6 +108,9 @@
console.keyMap = "sg";
# services.flatpak.enable = true;
services = {
twingate.enable = true;
};
system.stateVersion = "23.11";
nix.settings.experimental-features = ["nix-command" "flakes"];

View file

@ -1,8 +1,6 @@
_: {
imports = [
../.
./../programs.nix
./../hyprland.nix
./programs.nix
./configuration.nix
./hardware-configuration.nix

View file

@ -1,8 +1,6 @@
_: {
imports = [
../.
./../programs.nix
./../hyprland.nix
./programs.nix
./configuration.nix
./hardware-configuration.nix

View file

@ -43,7 +43,6 @@ in {
smartmontools
python3
rustdesk
neovim
tmux
kitty
nextcloud-client
@ -58,6 +57,7 @@ in {
webcord
element-desktop
swww
toipe
];
};
}