parent
db10ca11f3
commit
fd51e1f396
5 changed files with 28 additions and 26 deletions
|
@ -19,14 +19,14 @@
|
|||
};
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, home-manager, homeage, agenix, ... }: {
|
||||
nixosConfigurations = {
|
||||
pim = nixpkgs.lib.nixosSystem {
|
||||
outputs = { nixpkgs, home-manager, homeage, agenix, nur, ... }: {
|
||||
nixosConfigurations.pim = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./configuration.nix
|
||||
agenix.nixosModules.default
|
||||
home-manager.nixosModules.home-manager {
|
||||
home-manager.extraSpecialArgs = { inherit nur; };
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.pim = {
|
||||
|
@ -39,5 +39,4 @@
|
|||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,10 +1,13 @@
|
|||
{ pkgs, config, ... }:
|
||||
{ pkgs, nur, ... }:
|
||||
|
||||
let
|
||||
nur-no-pkgs = import (nur) { inherit pkgs; nurpkgs = pkgs; };
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./bash
|
||||
./neovim
|
||||
./firefox
|
||||
(import ./firefox nur-no-pkgs) # TODO: bit of a hack, but better than before
|
||||
./ssh
|
||||
./syncthing
|
||||
./alacritty
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
nurpkgs:
|
||||
{ pkgs, lib, ... }@args:
|
||||
|
||||
let
|
||||
nurpkgs = import (builtins.fetchTarball {url = "https://github.com/nix-community/NUR/archive/master.tar.gz"; sha256 = "1gb3wkmyl6xbs4kval2ml48nlil39853dj62rxfrlk9i2nky2ly4"; }) { inherit pkgs; };
|
||||
firefoxAddons = import ./addons.nix (args // { inherit nurpkgs; });
|
||||
firefoxSettings = {
|
||||
"browser.aboutConfig.showWarning" = false;
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
sudo nixos-rebuild switch --flake ./#pim --impure
|
||||
sudo nixos-rebuild switch --flake ./#pim
|
||||
|
|
Loading…
Reference in a new issue