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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -4,6 +4,4 @@
"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
services.pipewire = {
enable = true;
alsa = {
enable = true;
support32Bit = true;

View file

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

View file

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