This commit is contained in:
Miguel Palhas
2024-09-29 10:31:52 +01:00
commit 327b575dc5
16 changed files with 960 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{ config, lib, ... }: {
virtualisation.docker = {
enable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
};
users.groups.docker = { };
}
+18
View File
@@ -0,0 +1,18 @@
{ inputs, pkgs, ... }:
let
tuigreet = "${pkgs.greetd.tuigreet}/bin/tuigreet";
hyprland-session = "${pkgs.hyprland}/share/wayland-sessions";
in {
programs.hyprland.enable = true;
services.greetd = {
enable = true;
settings = {
default_session = {
command =
"${tuigreet} --time --remember --remember-session --sessions ${hyprland-session}";
user = "greeter";
};
};
};
}
+4
View File
@@ -0,0 +1,4 @@
{ inputs, ... }: {
programs.zsh.enable = true;
programs.starship.enable = true;
}
+25
View File
@@ -0,0 +1,25 @@
{ inputs, ... }: {
imports =
[ inputs.home-manager.nixosModules.home-manager ./nix.nix ./zsh.nix ];
programs = { zsh.enable = true; };
time = { timeZone = "Europe/Lisbon"; };
networking = { networkmanager = { enable = true; }; };
i18n = {
defaultLocale = "en_US.UTF-8";
extraLocaleSettings = {
LC_ADDRESS = "pt_PT.UTF-8";
LC_IDENTIFICATION = "pt_PT.UTF-8";
LC_MEASUREMENT = "pt_PT.UTF-8";
LC_MONETARY = "pt_PT.UTF-8";
LC_NAME = "pt_PT.UTF-8";
LC_NUMERIC = "pt_PT.UTF-8";
LC_PAPER = "pt_PT.UTF-8";
LC_TELEPHONE = "pt_PT.UTF-8";
LC_TIME = "pt_PT.UTF-8";
};
};
}
+15
View File
@@ -0,0 +1,15 @@
{ inputs, lib, nixpkgs, ... }: {
nix = {
settings = {
trusted-users = [ "'root" "@wheel" ];
auto-optimise-store = lib.mkDefault true;
experimental-features = [ "nix-command" "flakes" ];
warn-dirty = false;
};
gc = {
automatic = true;
options = "--delete-older-than 30d";
};
};
nixpkgs.config.allowUnfree = true;
}
+7
View File
@@ -0,0 +1,7 @@
{ inputs, ... }: {
programs.zsh.enable = true;
programs.starship = {
enable = true;
settings = { add_newline = true; };
};
}
+41
View File
@@ -0,0 +1,41 @@
{ inputs, pkgs, ... }:
let
tuigreet = "${pkgs.greetd.tuigreet}/bin/tuigreet";
hyprland-session = "${pkgs.hyprland}/share/wayland-sessions";
in {
imports = [
./hardware-configuration.nix
../common/global
../common/features/hyprland.nix
../common/features/docker.nix
];
networking.hostName = "nixos-test";
boot = {
loader = {
grub = {
enable = true;
device = "/dev/vda";
useOSProber = true;
};
};
};
system.stateVersion = "24.05";
users.users.naps62 = {
isNormalUser = true;
description = "Miguel Palhas";
extraGroups = [ "networkmanager" "input" "wheel" "docker" ];
shell = pkgs.zsh;
hashedPassword =
"$y$j9T$0p/ZYQsSA/FroVjV59pI/0$LKyzass6W9GjJR0GLWI6xhVrLi0b5AYYMR3MvQKNK11";
};
fileSystems."mnt/nfs" = {
device = "192.168.122.1:/home/naps62/projects/nixos";
fsType = "nfs";
options = [ "rw" "soft" ];
};
}
+31
View File
@@ -0,0 +1,31 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "virtio_scsi" "sr_mod" "virtio_blk" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/f351eb61-2a35-416c-bad6-f49400917b2e";
fsType = "ext4";
};
swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp1s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}