update polybar config, set alacritty size for 2k screen add steam and heroic games launcher

This commit is contained in:
2024-10-17 15:56:23 +02:00
parent 20f87b132b
commit af79ebb579
11 changed files with 77 additions and 21 deletions

View File

@ -19,14 +19,14 @@
#NIXOS CONFIG
nixosConfigurations = {
default = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
specialArgs = {inherit inputs; flakeName="default";};
modules = [
./hardware-configuration.nix
./configuration.nix
];
};
vbox = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
specialArgs = {inherit inputs;flakeName="vbox";};
modules = [
./hardware-configuration.nix
./configuration.nix
@ -34,7 +34,7 @@
];
};
laptop = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
specialArgs = {inherit inputs;flakeName="laptop";};
modules = [
./hardware-configuration.nix
./configuration.nix
@ -75,6 +75,17 @@
./home.nix
./homes/ft/ft.nix
];
};
laptop = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
extraSpecialArgs = {
username = "${username}";
homeDir = "${homeDir}";
};
modules = [
./home.nix
./homes/laptop/laptop.nix
];
};
};
};