pinephone pro gui works if disable gdm and reenable it
This commit is contained in:
parent
3625ec971f
commit
c8d76d5427
3 changed files with 28 additions and 1 deletions
17
flake.lock
generated
17
flake.lock
generated
|
|
@ -214,6 +214,22 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"mobile-nixpkgs": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1770197578,
|
||||||
|
"narHash": "sha256-AYqlWrX09+HvGs8zM6ebZ1pwUqjkfpnv8mewYwAo+iM=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "00c21e4c93d963c50d4c0c89bfa84ed6e0694df2",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "00c21e4c93d963c50d4c0c89bfa84ed6e0694df2",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"nix-bwrapper": {
|
"nix-bwrapper": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": "nixpkgs_2",
|
"nixpkgs": "nixpkgs_2",
|
||||||
|
|
@ -467,6 +483,7 @@
|
||||||
"languini": "languini",
|
"languini": "languini",
|
||||||
"mapnix": "mapnix",
|
"mapnix": "mapnix",
|
||||||
"mobile-nixos": "mobile-nixos",
|
"mobile-nixos": "mobile-nixos",
|
||||||
|
"mobile-nixpkgs": "mobile-nixpkgs",
|
||||||
"nix-bwrapper": "nix-bwrapper",
|
"nix-bwrapper": "nix-bwrapper",
|
||||||
"nix-minecraft": "nix-minecraft",
|
"nix-minecraft": "nix-minecraft",
|
||||||
"nixpkgs": "nixpkgs_6",
|
"nixpkgs": "nixpkgs_6",
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,7 @@
|
||||||
};
|
};
|
||||||
nix-minecraft.url = "github:Infinidoge/nix-minecraft";
|
nix-minecraft.url = "github:Infinidoge/nix-minecraft";
|
||||||
nix-bwrapper.url = "github:Naxdy/nix-bwrapper";
|
nix-bwrapper.url = "github:Naxdy/nix-bwrapper";
|
||||||
|
mobile-nixpkgs.url = "github:NixOS/nixpkgs?rev=00c21e4c93d963c50d4c0c89bfa84ed6e0694df2";
|
||||||
mobile-nixos = {
|
mobile-nixos = {
|
||||||
url = "github:mobile-nixos/mobile-nixos";
|
url = "github:mobile-nixos/mobile-nixos";
|
||||||
flake = false;
|
flake = false;
|
||||||
|
|
@ -47,7 +48,7 @@
|
||||||
./loadedskypotato/configuration.nix
|
./loadedskypotato/configuration.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
nixosConfigurations.pinephonepro = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.pinephonepro = inputs.mobile-nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [
|
modules = [
|
||||||
./pinephonepro/configuration.nix
|
./pinephonepro/configuration.nix
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
(import "${inputs.mobile-nixos}/lib/configuration.nix" { device = "pine64-pinephonepro"; })
|
(import "${inputs.mobile-nixos}/lib/configuration.nix" { device = "pine64-pinephonepro"; })
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
"${inputs.mobile-nixos}/examples/phosh/phosh.nix"
|
"${inputs.mobile-nixos}/examples/phosh/phosh.nix"
|
||||||
|
../cos.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.hostName = "pinephonepro";
|
networking.hostName = "pinephonepro";
|
||||||
|
|
@ -41,6 +42,14 @@
|
||||||
user = "clhickey";
|
user = "clhickey";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#services.displayManager.enable = true;
|
||||||
|
services.displayManager.gdm = {
|
||||||
|
enable = true;
|
||||||
|
debug = true;
|
||||||
|
};
|
||||||
|
#services.gnome.gnome-keyring.enable = true;
|
||||||
|
#services.getty.autologinUser = "clhickey";
|
||||||
|
|
||||||
#
|
#
|
||||||
# User configuration
|
# User configuration
|
||||||
#
|
#
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue