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 = [
|
||||
# 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;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
'';
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
{ self, inputs, ... }:
|
||||
{
|
||||
self,
|
||||
inputs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home-manager = {
|
||||
backupFileExtension = "backup";
|
||||
|
|
|
@ -4,6 +4,4 @@
|
|||
"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
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa = {
|
||||
enable = true;
|
||||
support32Bit = true;
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
xdg.mime = {
|
||||
enable = true;
|
||||
defaultApplications =
|
||||
let
|
||||
fileManager = "org.gnome.Nautilus.desktop";
|
||||
|
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue