aaa
This commit is contained in:
parent
5a7b9b23a3
commit
230e50436d
1 changed files with 24 additions and 29 deletions
53
flake.nix
53
flake.nix
|
|
@ -149,40 +149,35 @@
|
||||||
nixosModules = {
|
nixosModules = {
|
||||||
automapaper = ./modules/automapaper;
|
automapaper = ./modules/automapaper;
|
||||||
};
|
};
|
||||||
homeConfigurations = {
|
homeManagerModules = {
|
||||||
"noa@zelden" =
|
"noa@zelden" =
|
||||||
let
|
let
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||||
in
|
in
|
||||||
inputs.home-manager.lib.homeManagerConfiguration {
|
|
||||||
pkgs = pkgs;
|
(import ./common/home {
|
||||||
extraSpecialArgs = { inherit inputs nix-colors; };
|
enableGraphical = true;
|
||||||
modules = [
|
enableFlut = false;
|
||||||
(import ./common/home {
|
enableGames = false;
|
||||||
enableGraphical = true;
|
displays = [
|
||||||
enableFlut = false;
|
{
|
||||||
enableGames = false;
|
name = "DP-6";
|
||||||
displays = [
|
horizontal = 3840;
|
||||||
{
|
vertical = 1200;
|
||||||
name = "DP-6";
|
horizontal-offset = 0;
|
||||||
horizontal = 3840;
|
vertical-offset = 0;
|
||||||
vertical = 1200;
|
refresh-rate = 100;
|
||||||
horizontal-offset = 0;
|
scale = "1";
|
||||||
vertical-offset = 0;
|
}
|
||||||
refresh-rate = 100;
|
|
||||||
scale = "1";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
extraConfig = {
|
|
||||||
programs.btop.package = pkgs.btop.overrideAttrs (oldAttrs: {
|
|
||||||
cmakeFlags = (oldAttrs.cmakeFlags or [ ]) ++ [
|
|
||||||
"-DBTOP_GPU=ON"
|
|
||||||
];
|
|
||||||
});
|
|
||||||
};
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
};
|
extraConfig = {
|
||||||
|
programs.btop.package = pkgs.btop.overrideAttrs (oldAttrs: {
|
||||||
|
cmakeFlags = (oldAttrs.cmakeFlags or [ ]) ++ [
|
||||||
|
"-DBTOP_GPU=ON"
|
||||||
|
];
|
||||||
|
});
|
||||||
|
};
|
||||||
|
});
|
||||||
};
|
};
|
||||||
packages = import ./packages { inherit nixpkgs; };
|
packages = import ./packages { inherit nixpkgs; };
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue