Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f72e2c038f |
+7
-11
@@ -1,10 +1,6 @@
|
||||
{
|
||||
inputs,
|
||||
self,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
flake.nixosModules.nixos-host = {pkgs, ...}: {
|
||||
{ inputs, self, config, ... }: {
|
||||
|
||||
flake.nixosModules.nixos-host = {pkgs, ...}: {
|
||||
imports = [
|
||||
../../hardware-configuration.nix
|
||||
];
|
||||
@@ -64,7 +60,7 @@
|
||||
users.users.${config.username} = {
|
||||
isNormalUser = true;
|
||||
description = "Thomas Gouveia Lopes";
|
||||
extraGroups = ["networkmanager" "wheel"];
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
};
|
||||
|
||||
# Programs
|
||||
@@ -73,7 +69,7 @@
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# Enable flakes
|
||||
nix.settings.experimental-features = ["nix-command" "flakes"];
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
# Auto-unlock gnome-keyring on login
|
||||
security.pam.services.login.enableGnomeKeyring = true;
|
||||
@@ -86,7 +82,7 @@
|
||||
fileSystems."/mnt/endeavour" = {
|
||||
device = "/dev/disk/by-uuid/a32ca052-12a5-4355-bd3b-b4515d9ea4a5";
|
||||
fsType = "ext4";
|
||||
options = ["defaults" "noatime"];
|
||||
};
|
||||
options = [ "defaults" "noatime" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,4 +1,8 @@
|
||||
{self, ...}: {
|
||||
{
|
||||
inputs,
|
||||
self,
|
||||
...
|
||||
}: {
|
||||
flake.nixosModules.packages = {pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
fd
|
||||
@@ -8,7 +12,6 @@
|
||||
alacritty
|
||||
fzf
|
||||
autojump
|
||||
wl-clipboard
|
||||
pulseaudio
|
||||
legcord
|
||||
quickshell
|
||||
@@ -19,8 +22,6 @@
|
||||
self.packages.${pkgs.stdenv.hostPlatform.system}.handy
|
||||
mpv
|
||||
ffmpeg
|
||||
tmux
|
||||
obs-studio
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user