feat: remove home-module as a default import

This commit is contained in:
Nydragon 2024-10-01 23:48:46 +02:00
parent dcb1e3e58a
commit 5e2d03da6c
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
11 changed files with 29 additions and 25 deletions

View file

@ -9,7 +9,6 @@
imports = [ imports = [
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
inputs.home-manager.nixosModules.home-manager
../../modules ../../modules
./home.nix ./home.nix
]; ];
@ -24,19 +23,20 @@
powerOnBoot = true; powerOnBoot = true;
}; };
services.blueman.enable = true;
#: Power Consumption {{{ #: Power Consumption {{{
services.logind = { services.logind = {
powerKey = "hibernate"; powerKey = "hibernate";
}; };
#: }}} #: }}}
xdg = {
xdg.portal.enable = true; portal.enable = true;
mime.enable = true;
};
services = { services = {
displayManager.sddm.enable = true; displayManager.sddm.enable = true;
dbus.enable = true; dbus.enable = true;
blueman.enable = true;
pipewire.enable = true;
tailscale = { tailscale = {
enable = true; enable = true;
@ -74,7 +74,6 @@
"libvirtd" # VM OPs "libvirtd" # VM OPs
"dialout" # Necessary for serial port interactions "dialout" # Necessary for serial port interactions
]; ];
shell = pkgs.fish;
}; };
}; };

View file

@ -2,9 +2,15 @@
pkgs, pkgs,
username, username,
config, config,
inputs,
... ...
}: }:
{ {
imports = [
../../modules/home-manager.nix
inputs.home-manager.nixosModules.home-manager
];
home-manager.users.${username} = { home-manager.users.${username} = {
imports = [ imports = [
../../home/rofi ../../home/rofi

View file

@ -10,7 +10,6 @@
imports = [ imports = [
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
inputs.home-manager.nixosModules.home-manager
../../modules ../../modules
./home.nix ./home.nix
]; ];
@ -37,7 +36,8 @@
layout = "fr"; layout = "fr";
variant = ""; variant = "";
}; };
xdg.mime.enable = true;
services.pipewire.enable = true;
systemd.sleep.extraConfig = '' systemd.sleep.extraConfig = ''
HibernateDelaySec=1200 HibernateDelaySec=1200
''; '';

View file

@ -2,9 +2,15 @@
username, username,
pkgs, pkgs,
config, config,
inputs,
... ...
}: }:
{ {
imports = [
../../modules/home-manager.nix
inputs.home-manager.nixosModules.home-manager
];
home-manager.users.${username} = { home-manager.users.${username} = {
imports = [ imports = [
../../home/sway ../../home/sway

View file

@ -5,10 +5,8 @@
./locale.nix ./locale.nix
./networking.nix ./networking.nix
./fonts.nix ./fonts.nix
./secrets.nix
./portals.nix ./portals.nix
./env.nix ./env.nix
./home-manager.nix
./programs/firefox.nix ./programs/firefox.nix
./programs/thunderbird.nix ./programs/thunderbird.nix

View file

@ -1,4 +1,9 @@
{ self, inputs, ... }: {
self,
inputs,
lib,
...
}:
{ {
home-manager = { home-manager = {
backupFileExtension = "backup"; backupFileExtension = "backup";

View file

@ -4,6 +4,4 @@
"github.com".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl"; "github.com".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl";
}; };
}; };
services.openssh.enable = true;
} }

View file

@ -1,6 +0,0 @@
{
age.secrets.rustypaste = {
file = ../secrets/rustypaste.age;
owner = "ny";
};
}

View file

@ -1,7 +1,6 @@
{ {
# Enables wireplumber automatically # Enables wireplumber automatically
services.pipewire = { services.pipewire = {
enable = true;
alsa = { alsa = {
enable = true; enable = true;
support32Bit = true; support32Bit = true;

View file

@ -1,6 +1,5 @@
{ {
xdg.mime = { xdg.mime = {
enable = true;
defaultApplications = defaultApplications =
let let
fileManager = "org.gnome.Nautilus.desktop"; fileManager = "org.gnome.Nautilus.desktop";

View file

@ -8,9 +8,9 @@
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vimix-icon-theme #vimix-icon-theme
pop-icon-theme #pop-icon-theme
catppuccin-papirus-folders catppuccin-papirus-folders
catppuccin-kvantum #catppuccin-kvantum
]; ];
} }