Made system configurations more similar

This commit is contained in:
Bryan Ramos 2024-02-13 22:50:09 -05:00
parent 395f702d45
commit dd6d74f867
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
3 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
{ lib, pkgs, ... }: { ... }:
{ {
imports = [ imports = [

View file

@ -1,4 +1,4 @@
{ lib, ... }: { ... }:
{ {
imports = [ imports = [

View file

@ -4,16 +4,16 @@
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.users.${config.user.name} = { home-manager.users.${config.user.name} = {
imports = [
../../user
../../modules
];
programs.home-manager.enable = true; programs.home-manager.enable = true;
programs.bash.shellAliases = { programs.bash.shellAliases = {
nixup = "sudo nixos-rebuild switch --flake /etc/nixos/.#windows"; nixup = "sudo nixos-rebuild switch --flake /etc/nixos/.#windows";
}; };
imports = [
../../modules
../../user
];
home.stateVersion = "23.11"; home.stateVersion = "23.11";
home.username = "${config.user.name}"; home.username = "${config.user.name}";