feat: remove home-module as a default import
This commit is contained in:
parent
dcb1e3e58a
commit
5e2d03da6c
11 changed files with 29 additions and 25 deletions
|
@ -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;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ self, inputs, ... }:
|
{
|
||||||
|
self,
|
||||||
|
inputs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
{
|
{
|
||||||
home-manager = {
|
home-manager = {
|
||||||
backupFileExtension = "backup";
|
backupFileExtension = "backup";
|
||||||
|
|
|
@ -4,6 +4,4 @@
|
||||||
"github.com".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl";
|
"github.com".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.openssh.enable = true;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
age.secrets.rustypaste = {
|
|
||||||
file = ../secrets/rustypaste.age;
|
|
||||||
owner = "ny";
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -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;
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
xdg.mime = {
|
xdg.mime = {
|
||||||
enable = true;
|
|
||||||
defaultApplications =
|
defaultApplications =
|
||||||
let
|
let
|
||||||
fileManager = "org.gnome.Nautilus.desktop";
|
fileManager = "org.gnome.Nautilus.desktop";
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue