diff options
| author | DemonKingSwarn <rockingswarn@gmail.com> | 2026-04-20 14:16:22 +0530 |
|---|---|---|
| committer | DemonKingSwarn <rockingswarn@gmail.com> | 2026-04-20 14:16:22 +0530 |
| commit | c20179f1afc29be2ef3ee32011cbc097bc70f771 (patch) | |
| tree | 6d601e759040d6e5843b1910c21bc1b17c63b231 /flake.nix | |
| parent | 62672163af7f58bac1607e3b33c59dd5ead0c52d (diff) | |
| download | odysseus-c20179f1afc29be2ef3ee32011cbc097bc70f771.zip odysseus-c20179f1afc29be2ef3ee32011cbc097bc70f771.tar.gz | |
better organization and tmux
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 51 |
1 files changed, 28 insertions, 23 deletions
@@ -1,29 +1,34 @@ { -description = "Home Manager configuration of swarn"; -inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; - - home-manager = { - url = "github:nix-community/home-manager"; - inputs.nixpkgs.follows = "nixpkgs"; - }; + description = "Home Manager configuration of swarn"; + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + + home-manager = { + url = "github:nix-community/home-manager"; + inputs.nixpkgs.follows = "nixpkgs"; + }; - hypr-wellbeing = { - url = "github:demonkingswarn/hypr-wellbeing"; - inputs.nixpkgs.follows = "nixpkgs"; + hypr-wellbeing = { + url = "github:demonkingswarn/hypr-wellbeing"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; -}; -outputs = inputs@{ self, nixpkgs, home-manager, ... }: - let - system = "x86_64-linux"; - pkgs = nixpkgs.legacyPackages.${system}; - in - { - homeConfigurations."swarn" = home-manager.lib.homeManagerConfiguration { - inherit pkgs; - modules = [ ./home.nix ]; - extraSpecialArgs = { inherit inputs; }; + outputs = inputs@{ self, nixpkgs, home-manager, ... }: + let + system = "x86_64-linux"; + pkgs = nixpkgs.legacyPackages.${system}; + + environment.systemPackages = [ + pkgs.git + pkgs.tmux + ]; + in + { + homeConfigurations."swarn" = home-manager.lib.homeManagerConfiguration { + inherit pkgs; + modules = [ ./home.nix ]; + extraSpecialArgs = { inherit inputs; }; + }; }; - }; } |
