hoe manager part 3
This commit is contained in:
parent
00c7b72fcd
commit
3fea6b47f3
5 changed files with 21 additions and 14 deletions
11
flake.nix
11
flake.nix
|
|
@ -25,7 +25,7 @@
|
||||||
./marty-pc.nix
|
./marty-pc.nix
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./user/marty.nix
|
./user/marty.nix
|
||||||
home-manager.nixosModules.default
|
home-manager.nixosModules.home-manager
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
marty-server = nixpkgs.lib.nixosSystem {
|
marty-server = nixpkgs.lib.nixosSystem {
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
./marty-server.nix
|
./marty-server.nix
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./user/marty.nix
|
./user/marty.nix
|
||||||
home-manager.nixosModules.default
|
home-manager.nixosModules.home-manager
|
||||||
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
@ -44,7 +44,12 @@
|
||||||
./marty-latitude.nix
|
./marty-latitude.nix
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./user/marty.nix
|
./user/marty.nix
|
||||||
home-manager.nixosModules.default
|
home-manager.nixosModules.home-manager
|
||||||
|
# {
|
||||||
|
# home-manager.useGlobalPkgs = true;
|
||||||
|
# home-manager.useUserPackages = true;
|
||||||
|
# home-manager.users.marty = import ./config.nix/modules/home.nix
|
||||||
|
# }
|
||||||
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,9 @@
|
||||||
home-manager = {
|
home-manager = {
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
# users = {
|
users = {
|
||||||
# marty = ./nixos/modules/home.nix;
|
marty = import ./modules/home.nix;
|
||||||
# };
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# PREVIOUSLY HARDWARE-CONFIGURATION.NIX
|
# PREVIOUSLY HARDWARE-CONFIGURATION.NIX
|
||||||
|
|
|
||||||
|
|
@ -22,9 +22,9 @@
|
||||||
home-manager = {
|
home-manager = {
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
# users = {
|
users = {
|
||||||
# marty = ./nixos/modules/home.nix;
|
marty = import ./config.nix/modules/home.nix;
|
||||||
# };
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# PREVIOUSLY HARDWARE-CONFIGURATION.NIX
|
# PREVIOUSLY HARDWARE-CONFIGURATION.NIX
|
||||||
|
|
|
||||||
|
|
@ -22,9 +22,9 @@
|
||||||
home-manager = {
|
home-manager = {
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
# users = {
|
users = {
|
||||||
# marty = ./nixos/modules/home.nix;
|
marty = import ./config.nix/modules/home.nix;
|
||||||
# };
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# PREVIOUSLY HARDWARE-CONFIGURATION.NIX
|
# PREVIOUSLY HARDWARE-CONFIGURATION.NIX
|
||||||
|
|
|
||||||
|
|
@ -17,10 +17,12 @@
|
||||||
|
|
||||||
# The home.packages option allows you to install Nix packages into your
|
# The home.packages option allows you to install Nix packages into your
|
||||||
# environment.
|
# environment.
|
||||||
home.packages = [
|
home.packages = with pkgs; [
|
||||||
# # Adds the 'hello' command to your environment. It prints a friendly
|
# # Adds the 'hello' command to your environment. It prints a friendly
|
||||||
# # "Hello, world!" when run.
|
# # "Hello, world!" when run.
|
||||||
# pkgs.hello
|
hello
|
||||||
|
rbw
|
||||||
|
pinentry-curses
|
||||||
|
|
||||||
# # It is sometimes useful to fine-tune packages, for example, by applying
|
# # It is sometimes useful to fine-tune packages, for example, by applying
|
||||||
# # overrides. You can do that directly here, just don't forget the
|
# # overrides. You can do that directly here, just don't forget the
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue