This commit is contained in:
Sakooooo 2023-07-27 02:19:53 +03:00
parent 3a315d4b7a
commit bc7e0bda5a
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 5 additions and 3 deletions

View file

@ -58,7 +58,7 @@
# keyMap = "us"; # keyMap = "us";
useXkbConfig = true; useXkbConfig = true;
}; };
# already sold soul to corporations \_O_/ # already sold soul to corporations \_o_/
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
@ -84,7 +84,7 @@
pamixer # unsupported application pamixer # unsupported application
feh # im different feh # im different
unzip # zip file unzip # zip file
gh # get hub gh # github
htop # htop htop # htop
tree # trees tree # trees
]; ];

View file

@ -37,12 +37,14 @@
sakotop = nixpkgs.lib.nixosSystem { sakotop = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; }; specialArgs = { inherit inputs outputs; };
modules = [ modules = [
./default.nix
./hosts/sakotop/configuration.nix ./hosts/sakotop/configuration.nix
]; ];
}; };
sakopc = nixpkgs.lib.nixosSystem { sakopc = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; }; specialArgs = { inherit inputs outputs; };
modules = [ modules = [
./default.nix
./hosts/sakopc/configuration.nix ./hosts/sakopc/configuration.nix
]; ];
}; };