cleanup
This commit is contained in:
+11
-7
@@ -1,6 +1,10 @@
|
|||||||
{ inputs, self, config, ... }: {
|
{
|
||||||
|
inputs,
|
||||||
flake.nixosModules.nixos-host = {pkgs, ...}: {
|
self,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
flake.nixosModules.nixos-host = {pkgs, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
../../hardware-configuration.nix
|
../../hardware-configuration.nix
|
||||||
];
|
];
|
||||||
@@ -60,7 +64,7 @@ flake.nixosModules.nixos-host = {pkgs, ...}: {
|
|||||||
users.users.${config.username} = {
|
users.users.${config.username} = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Thomas Gouveia Lopes";
|
description = "Thomas Gouveia Lopes";
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = ["networkmanager" "wheel"];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Programs
|
# Programs
|
||||||
@@ -69,7 +73,7 @@ flake.nixosModules.nixos-host = {pkgs, ...}: {
|
|||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
# Enable flakes
|
# Enable flakes
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = ["nix-command" "flakes"];
|
||||||
|
|
||||||
# Auto-unlock gnome-keyring on login
|
# Auto-unlock gnome-keyring on login
|
||||||
security.pam.services.login.enableGnomeKeyring = true;
|
security.pam.services.login.enableGnomeKeyring = true;
|
||||||
@@ -82,7 +86,7 @@ flake.nixosModules.nixos-host = {pkgs, ...}: {
|
|||||||
fileSystems."/mnt/endeavour" = {
|
fileSystems."/mnt/endeavour" = {
|
||||||
device = "/dev/disk/by-uuid/a32ca052-12a5-4355-bd3b-b4515d9ea4a5";
|
device = "/dev/disk/by-uuid/a32ca052-12a5-4355-bd3b-b4515d9ea4a5";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
options = [ "defaults" "noatime" ];
|
options = ["defaults" "noatime"];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
alacritty
|
alacritty
|
||||||
fzf
|
fzf
|
||||||
autojump
|
autojump
|
||||||
|
wl-clipboard
|
||||||
pulseaudio
|
pulseaudio
|
||||||
legcord
|
legcord
|
||||||
quickshell
|
quickshell
|
||||||
|
|||||||
Reference in New Issue
Block a user